diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-02-10 10:04:14 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2024-02-10 10:04:14 -0500 |
commit | 8bd3be35bccd742bfa91793851443724d279824e (patch) | |
tree | 59861a1b592f8edfabefc55b30b3d18374174a35 /themes/cranky/layouts/shortcodes/mermaid.html | |
parent | 5d58e8018c549c3b59c498eadbfcdb6955d02d70 (diff) |
Update project structure + new shortcodes
Diffstat (limited to 'themes/cranky/layouts/shortcodes/mermaid.html')
-rw-r--r-- | themes/cranky/layouts/shortcodes/mermaid.html | 8 |
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> |