fix: use custom render templates to fix references (#56)
* fix: use custom render templates to fix references * add back showAnchor condition * change site params access
This commit is contained in:
parent
e87be2092c
commit
38c6059ab8
5 changed files with 22 additions and 9 deletions
18
layouts/_default/_markup/render-heading.html
Normal file
18
layouts/_default/_markup/render-heading.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
{{ $showAnchor := (and (default true .Page.Params.GeekdocAnchor) (default true .Page.Site.Params.GeekdocAnchor)) }}
|
||||
|
||||
{{ if $showAnchor }}
|
||||
<div class="gdoc-page__anchorwrap">
|
||||
<h{{ .Level }} id="{{ .Anchor | safeURL }}">
|
||||
{{ .Text | safeHTML }}
|
||||
<a data-clipboard-text="{{ .Page.Permalink }}#{{ .Anchor | safeURL }}" class="gdoc-page__anchor gdoc-page__anchor--right clip" aria-label="Anchor {{ .Text | safeHTML }}" href="#{{ .Anchor | safeURL }}">
|
||||
<svg class="icon link"><use xlink:href="#link"></use></svg>
|
||||
</a>
|
||||
</h{{ .Level }}>
|
||||
</div>
|
||||
{{ else }}
|
||||
<div class="gdoc-page__anchorwrap">
|
||||
<h{{ .Level }} id="{{ .Anchor | safeURL }}">
|
||||
{{ .Text | safeHTML }}
|
||||
</h{{ .Level }}>
|
||||
</div>
|
||||
{{ end }}
|
Loading…
Add table
Add a link
Reference in a new issue