small fixes

This commit is contained in:
teldra 2022-04-08 21:31:19 +02:00
parent ebd3e485ce
commit cc90458cdf
1 changed files with 2 additions and 5 deletions

View File

@ -1,10 +1,7 @@
{{ if $.Page.OutputFormats.Get "RSS" }}
<h{{ .Level }} id="{{ .Anchor | safeURL }}">{{ .Text | safeHTML }}</h{{ .Level }}>
{{ else }}
{{ $url := (printf "%s#%s" .Page.Permalink .Anchor) | safeURL }}
<h{{ .Level }} id="{{ .Anchor | safeURL }}">
{{ .Text | safeHTML }}
<a class="heading-anchor" href="{{ .Anchor }}" style="color: var(--text-muted); font-size: smaller;">
<a class="heading-anchor" href="{{ $url }}" style="color: var(--text-muted); font-size: smaller;">
{{ "#" }}
</a>
</h{{ .Level }}>
{{ end }}