hugo-snotra/layouts/_default/_markup/render-heading.html
Gregory Trolliet e4a2d0b68c [THEME] Add anchor to titles
Add an anchor for each title, display a '#' at left of the titles
and make them clickable links
2021-10-23 08:07:00 +02:00

7 lines
191 B
HTML

<h{{ .Level }} id="{{ .Anchor | safeURL }}">
<a class="anchor" href="#{{ .Anchor | safeURL }}">
#
<!-- {{ strings.Repeat .Level "#" }} -->
</a>
{{ .Text | safeHTML }}
</h{{ .Level }}>