hugo-geekblog/layouts/_default/_markup/render-codeblock-mermaid.html
Robert Kaussow 12fc429b87
feat: support mermaid codeblocks (#302)
BREAKING CHANGE: Mermaid can be rendered using code blocks now as an alternative to the shortcode. To support this feature, the minimum supported Hugo version was changed to v0.93.
2022-08-30 21:24:49 +02:00

12 lines
356 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">
{{- .Inner -}}
</pre>