9 lines
396 B
HTML
9 lines
396 B
HTML
{{/* toc shortcode - Conditionally renders the Table of Contents based on word count or an explicit front matter flag */}}
|
|
{{ $threshold := .Site.Params.tocWordCountThreshold | default 300 }}
|
|
{{ $wordCount := countwords .Page.Content }}
|
|
{{ $showToc := or (gt $wordCount $threshold) (.Page.Params.toc) }}
|
|
{{ if $showToc }}
|
|
{{ partial "toc.html" .Page }}
|
|
{{ end }}
|
|
{{ partial "toc.html" .Page }}
|