hey, i’m trying to get jekyll and pandoc set up to automatically add identifiers to heading tags, so that i can use anchor links, as per this section of the pandoc manual.
however, when i add - auto_identifiers to my config.yml, i get a compile error (unknown option) and it doesn’t work out.
What you shared is manual for pandoc as a standalone CLI tool, from a quick look.
If you put
- auto_identifiers
In your Jekyll configuration it won’t know about pandoc. And it looks like you get an error because you are creating a list in your config - normally everything in the config has a key like baseurl: "/foo".
Is your plan to run pandoc over your Jekyll files as a separate step? Or did you want to use a Jekyll integration that will handle the headings as links for you?