Files
website/layouts/shortcodes/toc.html
2026-03-02 07:05:09 -08:00

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 }}