aboutsummaryrefslogtreecommitdiff
path: root/test/command/4164.md
AgeCommit message (Collapse)AuthorFilesLines
2021-12-03Improve Markdown writer escaping.John MacFarlane1-1/+1
This fixes escaping for '#' in particular. Closes #7726.
2021-05-16Markdown writer: fewer unneeded escapes for `#`.John MacFarlane1-1/+1
See #6259.
2020-11-14Markdown writer: default to using ATX headings.Aner Lucero1-8/+4
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.
2019-07-18Markdown writer: prefer using raw_attribute when enabled.John MacFarlane1-1/+1
The `raw_attribute` will be used to mark raw bits, even HTML and LaTeX, and even when `raw_html` and `raw_tex` are enabled, as they are by default. To get the old behavior, disable `raw_attribute` in the writer. Closes #4311.
2017-12-17OPML reader: enable raw HTML and other extensions by default for notes.John MacFarlane1-0/+35
This fixes a regression in 2.0. Note that extensions can now be individually disabled, e.g. `-f opml-smart-raw_html`. Closes #4164.