Surrounding HTML Heading Content with Anchor Tag?

Thank you @kaushalmodi , your post was very useful in solving my problem.

layouts/partials/anchorize-headings.html

{{ . | replaceRE "(<h[1-6]\\sid=\"([^\"]+)\"\\s?>)(.+)(</h[1-6]+>)" "${1}<a class=\"h-anchor\" href=\"#${2}\">${3}</a>${4}" | safeHTML }}

Used as {{ partial "anchorize-headings.html" .Content }}

1 Like