hugo-geekdoc/layouts/shortcodes/mermaid.html

10 lines
345 B
HTML
Raw Normal View History

2020-01-12 15:33:02 +01:00
{{ if not (.Page.Scratch.Get "mermaid") }}
<!-- Include mermaid only first time --><script defer src="{{ index (index .Site.Data.assets "mermaid.js") "src" | relURL }}"></script>
{{ .Page.Scratch.Set "mermaid" true }}
2020-01-12 15:33:02 +01:00
{{ end }}
<pre class="gdoc-mermaid mermaid{{ with .Get "class" }}{{ printf " %s" . }}{{ end }}">
{{- .Inner -}}
</pre>