summaryrefslogtreecommitdiff
path: root/themes/cranky/layouts/shortcodes/mermaid.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/cranky/layouts/shortcodes/mermaid.html')
-rw-r--r--themes/cranky/layouts/shortcodes/mermaid.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/themes/cranky/layouts/shortcodes/mermaid.html b/themes/cranky/layouts/shortcodes/mermaid.html
new file mode 100644
index 0000000..a752e38
--- /dev/null
+++ b/themes/cranky/layouts/shortcodes/mermaid.html
@@ -0,0 +1,8 @@
+{{ if ($.Page.Params.mermaid) }}
+<script src="//cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
+<script>!window.mermaid && document.write(unescape('%3Cscript src="/js/mermaid-8.9.1/mermaid.min.js"%3E%3C/script%3E'))</script>
+<script>mermaid.initialize({startOnLoad:true,theme:'dark'});</script>
+{{ end }}
+<div class="mermaid">
+ {{.Inner}}
+</div>