22 lines
680 B
HTML
22 lines
680 B
HTML
|
{{- $context := .context }}
|
||
|
{{- $content := .content }}
|
||
|
{{- $align := .align | default "center" }}
|
||
|
{{- $zoom := $context.Site.Params.mermaidZoom | default false }}
|
||
|
{{- with $context.Params.mermaidZoom }}
|
||
|
{{- $zoom = . }}
|
||
|
{{- if eq (printf "%T" .) "string" }}
|
||
|
{{- $zoom = (eq . "true") }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- with .zoom }}
|
||
|
{{- $zoom = . }}
|
||
|
{{- if eq (printf "%T" .) "string" }}
|
||
|
{{- $zoom = (eq . "true") }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- with $context }}
|
||
|
<div class="mermaid align-{{ $align }}{{ if $zoom }} zoom{{ end }}">
|
||
|
{{- replaceRE "'" "'" ( replaceRE """ "\"" ( $content | safeHTML ) ) -}}
|
||
|
</div>
|
||
|
{{- .Store.Set "hasMermaid" true }}
|
||
|
{{- end }}
|