I use pandoc (not an executable on the command line, but the haskell library) and I am generating HTML output. I can not make a table of contents in the conclusion. Roughly, I have this:
... writeHtml (def {writerTOCDepth = 4, writerTableOfContents = True} m) where m = [ Header 1 ("myIdentifier",[],[]) [Str "Vulnerabilities"] , Div nullAttr otherStuff ]
It seems to me that this is enough to get HTML output with a simple table of contents (which only has a link to the Vulnerabilities section). If someone sees what I missed, I would appreciate help.
EDIT
I believe the problem is that I need to set writerStandalone = True , but when I do this, the resulting document will be completely empty.
source share