Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSarah German <sgerman@gitlab.com>2022-11-14 17:20:29 +0300
committerAmy Qualls <aqualls@gitlab.com>2022-11-14 17:20:29 +0300
commitaa2212acb5e6f4d7ef6b7e81624a48421acb4adf (patch)
tree1a28a42e57aa2ef4a25bcf2848f31fefeb924e52 /lib
parent18e5d110b1ee35e192ce8b8abeb0ba00326a01b1 (diff)
Replace mermaid styles with a built-in theme
Diffstat (limited to 'lib')
-rw-r--r--lib/filters/convert_mermaid_html.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filters/convert_mermaid_html.rb b/lib/filters/convert_mermaid_html.rb
index fb21778a..b219dd49 100644
--- a/lib/filters/convert_mermaid_html.rb
+++ b/lib/filters/convert_mermaid_html.rb
@@ -16,6 +16,6 @@ class ConvertMermaidHtml < Nanoc::Filter
.gsub('>', '&gt;')
.gsub('"', '&quot;')
- %(<div class="mermaid">#{fixed_content}</div>)
+ %(<div class="mermaid load-mermaid">#{fixed_content}</div>)
end
end