-
Hi, is there a way to add headers that should be ignored by the ToC in markdown? All I found was #401 but not this. Unfortunately my current project needs them extensively, so I currently have to resort to raw |
Beta Was this translation helpful? Give feedback.
Answered by
Witiko
Oct 7, 2024
Replies: 1 comment 5 replies
-
Hi. After you have enabled the option \documentclass{article}
\usepackage[headerAttributes]{markdown}
\begin{document}
\begin{markdown}
# Here is a numbered section
## Here is an unnumbered subsection {-}
### This subsection will be unnumbered as well
## Here is a numbered subsection
\end{markdown}
\end{document} |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
Witiko
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi. After you have enabled the option
headerAttributes
, you should be able to write either{-}
or{.unnumbered}
after headings: