diff options
Diffstat (limited to 'themes/hugo-book/layouts/shortcodes/mermaid.html')
| -rw-r--r-- | themes/hugo-book/layouts/shortcodes/mermaid.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/shortcodes/mermaid.html b/themes/hugo-book/layouts/shortcodes/mermaid.html new file mode 100644 index 0000000..07a3bfc --- /dev/null +++ b/themes/hugo-book/layouts/shortcodes/mermaid.html @@ -0,0 +1,12 @@ +{{ if not (.Page.Scratch.Get "mermaid") }} +<!-- Include mermaid only first time --> +<script src="{{ "mermaid.min.js" | relURL }}"></script> +{{ with resources.Get "mermaid.json" }} + <script>mermaid.initialize({{ .Content | safeJS }})</script> +{{ end }} +{{ .Page.Scratch.Set "mermaid" true }} +{{ end }} + +<pre class="mermaid{{ with .Get "class" }} {{ . }}{{ end }}"> + {{- .Inner -}} +</pre> |
