Files
2026-07-11 14:54:56 -04:00

13 lines
364 B
HTML

{{ define "main" }}
{{- $content := .Content -}}
{{- $content = replaceRE `<div class="footnotes" role="doc-endnotes">` "" $content -}}
{{- $content = replaceRE `</div>\s*$` "" $content -}}
{{- $tmp := $content | safeHTML -}}
{{ $sections := split $tmp "<h2" }}
{{ range after 1 $sections }}
<section>
{{ print "<h2" . | safeHTML }}
</section>
{{ end }}
{{ end }}