summaryrefslogtreecommitdiff
path: root/tests/writer.opml
Commit message (Collapse)AuthorAge
* Markdown writer: fixed inconsistent spacing issue.John MacFarlane2016-11-15
| | | | | | | | Previously a tight bullet sublist got rendered with a blank line after, while a tight ordered sublist did not. Now we don't get the blank line in either case. Closes #3232.
* Markdown writer: improved escaping.John MacFarlane2015-04-18
| | | | | | | | `<` 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.
* Markdown writer: Avoid introducing spurious list items through wrapping.John MacFarlane2015-02-25
| | | | Closes #1946.
* Pretty: Make CR + BLANKLINE = BLANKLINE.John MacFarlane2014-10-20
| | | | | | | This fixes an extra blank line we were getting at the end of markdown fragments (as well as rst, org, etc.) Closes #1705.
* Markdown writer: More improvements to 'plain' output, updated tests.John MacFarlane2014-07-27
| | | | | | | | | 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.
* Revamped raw HTML block parsing in markdown.John MacFarlane2014-07-07
| | | | | | | | | | - 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.
* Markdown writer: Use proper escapes to avoid unwanted lists.John MacFarlane2014-04-24
| | | | | | Previously we used 0-width spaces, an ugly hack. Closes #980.
* Adjusted writers and tests for change in parsing of div/span.John MacFarlane2013-08-18
| | | | | Textile, MediaWiki, Markdown, Org, RST will emit raw HTML div tags for divs. Otherwise Div and Span are "transparent" block containers.
* Some test suite fixes for new metadata.John MacFarlane2013-06-25
|
* Added OPML template, tests.John MacFarlane2013-03-20
Minor fixes to OPML writer. Improved OPML reader tests.