f63b76e169
Previously we used Setext (underlined) headings by default. The default is now ATX (`##` style). * Add the `--markdown-headings=atx|setext` option. * Deprecate `--atx-headers`. * Add constructor 'ATXHeadingInLHS` constructor to `LogMessage` [API change]. * Support `markdown-headings` in defaults files. * Document new options in MANUAL. Closes #6662.
47 lines
290 B
Markdown
47 lines
290 B
Markdown
```
|
|
% pandoc -s --toc -t markdown
|
|
# A
|
|
## b
|
|
# B
|
|
## b
|
|
|
|
::: interior
|
|
# C
|
|
## cc
|
|
# D
|
|
:::
|
|
|
|
::: blue
|
|
# E
|
|
## e
|
|
:::
|
|
^D
|
|
- [A](#a)
|
|
- [b](#b)
|
|
- [B](#b-1)
|
|
- [b](#b-2)
|
|
- [E](#e)
|
|
- [e](#e-1)
|
|
|
|
# A
|
|
|
|
## b
|
|
|
|
# B
|
|
|
|
## b
|
|
|
|
::: {.interior}
|
|
# C
|
|
|
|
## cc
|
|
|
|
# D
|
|
:::
|
|
|
|
::: {.blue}
|
|
# E
|
|
|
|
## e
|
|
:::
|
|
```
|