1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# Unnumbered and unlisted headings in ConTeXt
```
% pandoc --to=context
# Preface {.unlisted -}
Nullam rutrum.
# Introduction
Nullam eu ante vel est convallis dignissim.
# Methods
Sed diam. Nulla posuere. Praesent fermentum tempor tellus. Nam
vestibulum accumsan nisl. Nam vestibulum accumsan nisl.
# References {-}
^D
\startsubject[title={Preface},reference={preface},number=no,incrementnumber=no]
Nullam rutrum.
\stopsubject
\startsectionlevel[title={Introduction},reference={introduction}]
Nullam eu ante vel est convallis dignissim.
\stopsectionlevel
\startsectionlevel[title={Methods},reference={methods}]
Sed diam. Nulla posuere. Praesent fermentum tempor tellus. Nam
vestibulum accumsan nisl. Nam vestibulum accumsan nisl.
\stopsectionlevel
\startsectionlevel[title={References},reference={references},number=no,incrementnumber=no]
\stopsectionlevel
```
## Semantic Headings with `--top-level-division`
```
% pandoc --to=context --top-level-division=chapter
# Bibliography {-}
None
^D
\startchapter[title={Bibliography},reference={bibliography},number=no,incrementnumber=no]
None
\stopchapter
```
|