When I am writing a documentation with markdown (in order to process it to HTML with pandoc), I always have one heading of first order (# Heading
), which is the document title, and multiple headings of second order (## Heading
).
But when I switch on --number-sections
in pandoc, all headings have a leading number for the document title.
How can I prevent that? Is there a parameter that h1
-like headings should not be numbered, or should I specify the title in another way?
{-}
makes all lower-range headings carry a0.
in front of their number. I did it with the YAML title now and pulled all headings one level up. – Biggers