mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
26 lines
No EOL
929 B
HTML
26 lines
No EOL
929 B
HTML
{{- $page := .page }}
|
|
{{- if and (not $page) .context }}
|
|
{{- $page = .context }}
|
|
{{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'mermaid' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#5180" $page.File.Path }}
|
|
{{- end }}
|
|
{{- $content := .content }}
|
|
{{- $align := .align | default "center" }}
|
|
{{- $zoom := $page.Site.Params.mermaidZoom | default false }}
|
|
{{- with $page.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 $page }}
|
|
<pre class="mermaid align-{{ $align }}{{ if $zoom }} zoom{{ end }}">
|
|
{{- replaceRE "'" "'" ( replaceRE """ "\"" ( $content | safeHTML ) ) -}}
|
|
</pre>
|
|
{{- .Store.Set "hasMermaid" true }}
|
|
{{- end }} |