aboutsummaryrefslogtreecommitdiff
path: root/tests/writer.asciidoc
AgeCommit message (Collapse)AuthorFilesLines
2015-03-15AsciiDoc writer: avoid wrapping after list marker.John MacFarlane1-1/+1
Closes #1858.
2015-03-15AsciiDoc writer: insert some needed blank lines.John MacFarlane1-0/+5
Closes #1860.
2014-08-31Markdown reader: better handling of paragraph in div.John MacFarlane1-0/+2
Previously text that ended a div would be parsed as Plain unless there was a blank line before the closing div tag. Test case: <div class="first"> This is a paragraph. This is another paragraph. </div> Closes #1591.
2014-07-20AsciiDoc writer: Double markers in intraword emphasis.John MacFarlane1-4/+4
Closes #1441.
2013-01-09Added Attr field to Header.John MacFarlane1-0/+31
Previously header ids were autogenerated by the writers. Now they are generated (unless supplied explicitly) in the markdown parser, if the `header_identifiers` extension is selected. In addition, the textile reader now supports id attributes on headers.
2011-11-18AsciiDoc: Don't use Roman numerals in ordered lists.John MacFarlane1-7/+7
AsiiDoc doesn't support them.
2011-11-18Renamed to AsciiDoc. Fixed display math and escapes.John MacFarlane1-14/+14
AsciiDoc does not seem to have consistent escaping rules.
2011-11-18Updated tests for correct col width.John MacFarlane1-15/+14
2011-11-18Updated asciidoc test.John MacFarlane1-326/+229
The test output still contains some mistakes.
2011-11-16Added an asciidoc writer (partial).John MacFarlane1-0/+754
Still TODO: - documentation in README - add default.asciidoc to templates/ - lists - tables - proper escaping - footnotes with blank lines - print separately at end? currently they are just ignored. - fix header (date gives weird result on pandoc README)