2023-07-27 14:14:55 +00:00
|
|
|
{{- $page := .page }}
|
|
|
|
{{- if and (not $page) .context }}
|
|
|
|
{{- $page = .context }}
|
2023-07-27 15:47:36 +00:00
|
|
|
{{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'math' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#5180" $page.File.Path }}
|
2023-07-27 14:14:55 +00:00
|
|
|
{{- end }}
|
2022-07-02 12:00:23 +00:00
|
|
|
{{- $content := .content }}
|
|
|
|
{{- $align := .align | default "center" }}
|
2023-07-27 14:14:55 +00:00
|
|
|
{{- with $page }}
|
2022-07-02 12:00:23 +00:00
|
|
|
<span class="math align-{{ $align }}">
|
|
|
|
{{- $content | safeHTML -}}
|
|
|
|
</span>
|
2023-05-18 12:01:50 +00:00
|
|
|
{{- .Store.Set "hasMathJax" true }}
|
2022-07-02 12:00:23 +00:00
|
|
|
{{- end }}
|