Files
website/layouts/partials/extend_head.html
T

28 lines
658 B
HTML

<!-- Conditional TOC and post content -->
{{ $threshold := .Site.Params.tocWordCountThreshold | default 300 }}
{{ $showToc := false }}
{{ if isset .Params "toc" }}
{{ $showToc = .Params.xparams.toc }}
{{ else }}
{{ $wordCount := countwords .Content }}
{{ $showToc = gt $wordCount $threshold }}
{{ end }}
{{ if $showToc }}
<nav class="table-of-contents">
{{ .TableOfContents }}
</nav>
{{ end }}
<!-- KaTeX math -->
{{ if .Params.xparams.math }}
{{ partialCached "math.html" . }}
{{ end }}
<!-- Mermaid diagrams -->
{{ if .Params.xparams.mermaid }}
{{ partialCached "mermaid.html" . }}
{{ end }}
{{ partialCached "social-share.html" . }}