hugo-theme-anubis2/layouts/_default/_markup/render-heading.html

9 lines
258 B
HTML
Raw Normal View History

2024-03-04 07:51:17 +01:00
<h{{ .Level }} id="{{ .Anchor | safeURL }}" {{ if .Attributes.style }}style="{{ .Attributes.style | safeCSS }}"{{ end }}>
<div>
2022-01-12 20:31:44 +01:00
<a href="#{{ .Anchor }}">
2024-03-04 07:51:17 +01:00
{{ range seq 2 .Level}}#{{end}}
2022-01-12 20:31:44 +01:00
</a>
2024-03-04 07:51:17 +01:00
{{ .Text | safeHTML }}
</div>
2024-04-09 14:03:09 +02:00
</h{{ .Level }}>