summaryrefslogtreecommitdiff
path: root/test/fb2/titles.markdown
AgeCommit message (Collapse)Author
2018-04-04FB2 writer: allow emphasis and notes in titlesAlexander Krotov
Only <p> and <empty-line /> are allowed in titles, but <p> has the same type as an ordinary paragraphs. Therefore, there is no need to remove emphasis from titles. Also, don't intersperse paragraph with empty lines.
2017-06-11Don't allow backslash + newline to affect block structure.John MacFarlane
Note that as a result of this change, the following, which formerly produced a header with two lines separated by a line break, will now produce a header followed by a paragraph: # Hi\ there This may affect some existing documents that relied on this undocumented and unintended behavior. This change makes pandoc more consistent with other Markdown implementations, and with itself (since the two-space version of a line break doesn't work inside ATX headers, and neither version works inside Setext headers). Closes #3730.
2017-02-04Moved tests/ -> test/.John MacFarlane