You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
365 B
HTML
10 lines
365 B
HTML
{{ $context := . }}
|
|
|
|
{{ $defaults := dict "id" $context.Anchor }}
|
|
|
|
{{ $attrs := merge .Attributes $defaults }}
|
|
|
|
<h{{ .Level }} {{ range $k, $v := $attrs }} {{ printf `%s="%s"` $k $v | safeHTMLAttr }} {{ end }}>
|
|
<a aria-label="{{ i18n "paige_link_to_this_section" }}" class="text-body text-decoration-none" href="#{{ .Anchor }}">{{ .Text }}</a>
|
|
</h{{ .Level }}>
|