mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-04 20:30:40 +00:00
12 lines
407 B
HTML
12 lines
407 B
HTML
<!-- prettier-ignore-start -->
|
|
{{ 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 }}
|
|
{{ end }}
|
|
<!-- prettier-ignore-end -->
|
|
|
|
<pre class="gdoc-mermaid mermaid{{ with .Get "class" }}{{ printf " %s" . }}{{ end }}">
|
|
{{- .Inner -}}
|
|
</pre>
|