summaryrefslogtreecommitdiff
path: root/themes/cranky/layouts/shortcodes/mermaid.html
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-02-10 10:04:14 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2024-02-10 10:04:14 -0500
commit8bd3be35bccd742bfa91793851443724d279824e (patch)
tree59861a1b592f8edfabefc55b30b3d18374174a35 /themes/cranky/layouts/shortcodes/mermaid.html
parent5d58e8018c549c3b59c498eadbfcdb6955d02d70 (diff)
Update project structure + new shortcodes
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>