summaryrefslogtreecommitdiffstats
path: root/layouts/_default/_markup/render-heading.html
blob: d0d5e05ba41cb2fa66b7dab2265f010b32b68fcd (plain)
1
2
3
4
5
{{- if eq .Level 1 -}}
<h1 id="{{ .Anchor }}">{{ .Text | safeHTML }}</h1>
{{- else -}}
<h{{ .Level }} id="{{ .Anchor }}"><span aria-hidden="true" class="heading-prefix">//</span> {{ .Text | safeHTML }}</h{{ .Level }}>
{{- end -}}