mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2026-05-21 11:05:49 +00:00
7 lines
225 B
HTML
7 lines
225 B
HTML
{{- /* formats .Content headings by adding an anchor */ -}}
|
|
{{ . | replaceRE
|
|
"(<h[1-6] id=\"([^\"]+)\".+)(</h[1-6]+>)"
|
|
"${1}<a hidden class=\"anchor\" aria-hidden=\"true\" href=\"#${2}\">#</a>${3}"
|
|
| safeHTML
|
|
}}
|