mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-04 20:30:44 +00:00
12 lines
396 B
HTML
12 lines
396 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="gblog-mermaid mermaid {{ with .Get "class" }}{{ . }}{{ end }}">
|
|
{{- .Inner -}}
|
|
</pre>
|