hugo-theme-hilfe/layouts/shortcodes/mermaid.html

17 lines
462 B
HTML
Raw Normal View History

2020-01-12 15:33:02 +01:00
{{ if not (.Page.Scratch.Get "mermaid") }}
2020-01-28 23:17:33 +01:00
<!-- Include mermaid only first time -->
2020-06-01 15:59:02 +02:00
<script defer src="{{ "js/mermaid.min.js" | relURL }}"></script>
2020-06-01 16:04:18 +02:00
<script>
document.addEventListener("DOMContentLoaded", function(event) {
mermaid.initialize({
flowchart: { useMaxWidth: true }
});
});
</script>
2020-01-28 23:17:33 +01:00
{{ .Page.Scratch.Set "mermaid" true }}
2020-01-12 15:33:02 +01:00
{{ end }}
<p class="mermaid{{ with .Get "class" }} {{ . }}{{ end }}">
{{- .Inner -}}
2020-01-12 15:33:02 +01:00
</p>