Create a new table_of_contents partial that includes an auto-generated table of contents if the word count is over 400 and the "toc" page variable has been set true.
8 lines
170 B
HTML
8 lines
170 B
HTML
{{ if and (gt .WordCount 400) .Params.toc }}
|
|
<aside>
|
|
<details open>
|
|
<summary>Table of Contents</summary>
|
|
{{ .TableOfContents }}
|
|
</details>
|
|
</aside>
|
|
{{ end }}
|