1
Fork 0
theorangeone.net-legacy/layouts/shortcodes/mermaid.html

10 lines
307 B
HTML

{{ $mermaidData := dict "theme" "default" }}
{{ $data := dict "code" .Inner "mermaid" $mermaidData }}
<figure class="mermaid">
<img src="https://mermaid.ink/img/{{ $data | jsonify | base64Encode }}" />
<figcaption class="text-center">
<small>{{ .Get "caption" }}</small>
</figcaption>
</figure>