summaryrefslogtreecommitdiff
path: root/tests/writer.asciidoc
Commit message (Collapse)AuthorAge
* AsciiDoc writer: avoid wrapping after list marker.John MacFarlane2015-03-15
| | | | Closes #1858.
* AsciiDoc writer: insert some needed blank lines.John MacFarlane2015-03-15
| | | | Closes #1860.
* Markdown reader: better handling of paragraph in div.John MacFarlane2014-08-31
| | | | | | | | | | | | | | | 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.
* AsciiDoc writer: Double markers in intraword emphasis.John MacFarlane2014-07-20
| | | | Closes #1441.
* Added Attr field to Header.John MacFarlane2013-01-09
| | | | | | | | | | 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.
* AsciiDoc: Don't use Roman numerals in ordered lists.John MacFarlane2011-11-18
| | | | AsiiDoc doesn't support them.
* Renamed to AsciiDoc. Fixed display math and escapes.John MacFarlane2011-11-18
| | | | AsciiDoc does not seem to have consistent escaping rules.
* Updated tests for correct col width.John MacFarlane2011-11-18
|
* Updated asciidoc test.John MacFarlane2011-11-18
| | | | The test output still contains some mistakes.
* Added an asciidoc writer (partial).John MacFarlane2011-11-16
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)