Pandoc Lua Filter to add table of contents to the side
Pandoc Lua Filter to add floating table of contents to HTML
Michael Cysouw cysouw@mac.com
Pandoc is a fabulous system to prepare text and export it to (almost) every format of your liking. Pandoc includes an option to add a table of contents, but by default this is just added at the top of the document. This Lua filter adds some better layout of the table of contents for HTML documents.
The filter adds a bit CSS and vanilla Javascript to the HTML output as created by the Pandoc defaults. The actual html is not changed in any way. If you have not added a title for the table of contents then the title “Contents” is automatically added.
Please note that I am not a very proficient CSS/Javascript programmer. I welcome suggestions and improvements! The current version was specifically made for a long book with a very complex structure, the current version can be found here as an example.
--standalone
and --toc
to produce the basic table of contents.toc-title: MY-TITLE
or add the option --metadat=toc-title:"MY-TITLE"
when producing the HTML.--lua-filter toc-css.lua
.As an example, consider the following command to convert this README.md
into README.html
:
pandoc README.md \
--to html \
--output docs/README.html \
--lua-filter toc-css.lua \
--standalone \
--toc \
--number-sections \
--metadata toc-title="Table of Contents" \
--metadata title="Introducing toc-css"
The remaining headers in this readme are only added to showcase the result in the HTML file.