aboutsummaryrefslogtreecommitdiff
path: root/test/command/3674.md
AgeCommit message (Collapse)AuthorFilesLines
2020-11-14Markdown writer: default to using ATX headings.Aner Lucero1-1/+1
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.
2017-05-18Markdown: allow attributes in reference links to start on next line.John MacFarlane1-0/+13
This addresses a subsidiary issue in #3674.
2017-05-17Markdown writer: Fixed duplicated reference linksJohn MacFarlane1-0/+26
with `--reference-links` and `--reference-location=section`. Also ensure that there are no empty link references `[]`. Closes #3674.