LoveIt/layouts/shortcodes/mermaid.html
2020-02-24 17:00:39 +08:00

6 lines
268 B
HTML

{{- $scratch := .Page.Scratch.Get "scratch" -}}
{{- /* shuffle md5 as id */ -}}
{{- $id := delimit (split (md5 .Inner) "" | shuffle) "" | printf "mermaid-%s" -}}
<div class="mermaid" id="{{ $id }}"></div>
{{- $scratch.SetInMap "mermaidMap" $id (trim .Inner "\n") -}}