aboutsummaryrefslogtreecommitdiff
path: root/site/layouts/_default/_markup/render-heading.html
blob: d115f85dcd39e2b52e6a04bd94b322c63f605f40 (plain)
1
2
3
4
5
6
7
{{- $id := .Anchor | safeURL -}}
{{- $text := .Text | safeHTML -}}
<h{{ .Level }} id="{{ $id }}">{{ $text }}
{{- if and (ge .Level .Page.Site.Params.anchors.min) (le .Level .Page.Site.Params.anchors.max) }}{{" " -}}
<a class="anchor-link" href="#{{ $id }}" aria-label="Link to this section: {{ $text }}"></a>
{{- end -}}
</h{{ .Level }}>