blob: c0c34dc2433ffbcf3d7276c88f394a158bfd4a5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
```
% 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}}
```
|