68b09a6d81
If this is present on a heading with the 'unnumbered' class, the heading won't appear in the TOC. This class has no effect if 'unnumbered' is not also specified. This affects HTML-based writers (including slide shows and epub), LateX (including beamer), RTF, and PowerPoint. Other writers do not yet support `unlisted`. Closes #1762.
18 lines
285 B
Markdown
18 lines
285 B
Markdown
```
|
|
% pandoc -t latex
|
|
# One {.unlisted}
|
|
|
|
# Two {.unnumbered}
|
|
|
|
# Three {.unlisted .unnumbered}
|
|
^D
|
|
\hypertarget{one}{%
|
|
\section{One}\label{one}}
|
|
|
|
\hypertarget{two}{%
|
|
\section*{Two}\label{two}}
|
|
\addcontentsline{toc}{section}{Two}
|
|
|
|
\hypertarget{three}{%
|
|
\section*{Three}\label{three}}
|
|
```
|