751b5ad010
Fixes #2609. This PR introduces the new-style section headings: `\section[my-header]{My Header}` -> `\section[title={My Header},reference={my-header}]`. On top of this, the ConTeXt writer now supports the `--section-divs` option to write sections in the fenced style, with `\startsection` and `\stopsection`.
10 lines
175 B
Markdown
10 lines
175 B
Markdown
```
|
|
% pandoc --top-level-division=chapter -t context
|
|
# Chapter
|
|
|
|
## Section
|
|
^D
|
|
\chapter[title={Chapter},reference={chapter}]
|
|
|
|
\section[title={Section},reference={section}]
|
|
```
|