mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 21:25:48 +00:00
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.
7 lines
60 B
Markdown
7 lines
60 B
Markdown
```
|
|
% pandoc -f gfm -t gfm
|
|
# ~~Header~~
|
|
^D
|
|
# ~~Header~~
|
|
```
|