aboutsummaryrefslogtreecommitdiff
path: root/tests/writer.opml
AgeCommit message (Collapse)AuthorFilesLines
2015-04-18Markdown writer: improved escaping.John MacFarlane1-4/+4
`<` should not be escaped as `\<`, for compatibility with original Markdown. We now escape `<` and `>` with entities. Also, we now backslash-escape square brackets. Closes #2086.
2015-02-25Markdown writer: Avoid introducing spurious list items through wrapping.John MacFarlane1-2/+2
Closes #1946.
2014-10-20Pretty: Make CR + BLANKLINE = BLANKLINE.John MacFarlane1-5/+5
This fixes an extra blank line we were getting at the end of markdown fragments (as well as rst, org, etc.) Closes #1705.
2014-07-27Markdown writer: More improvements to 'plain' output, updated tests.John MacFarlane1-13/+13
Math now appears in unicode if possible, without the distracting italics around identifiers. Blank lines around headers are more consistent. Footnotes appear in regular [n] style.
2014-07-07Revamped raw HTML block parsing in markdown.John MacFarlane1-1/+1
- We no longer include trailing spaces and newlines in the raw blocks. - We look for closing tags for elements (but without backtracking). - Each block-level tag is its own RawBlock; we no longer try to consolidate them (though `--normalize` will do so). Closes #1330.
2014-04-24Markdown writer: Use proper escapes to avoid unwanted lists.John MacFarlane1-5/+5
Previously we used 0-width spaces, an ugly hack. Closes #980.
2013-08-18Adjusted writers and tests for change in parsing of div/span.John MacFarlane1-1/+1
Textile, MediaWiki, Markdown, Org, RST will emit raw HTML div tags for divs. Otherwise Div and Span are "transparent" block containers.
2013-06-25Some test suite fixes for new metadata.John MacFarlane1-1/+1
2013-03-20Added OPML template, tests.John MacFarlane1-0/+72
Minor fixes to OPML writer. Improved OPML reader tests.