summaryrefslogtreecommitdiff
path: root/tests/writer.asciidoc
AgeCommit message (Collapse)Author
2017-02-04Moved tests/ -> test/.John MacFarlane
2016-10-02AsciiDoc writer: avoid unnecessary use of "unconstrained" emphasis.John MacFarlane
In AsciiDoc, you must use a special form of emphasis (double `__`) for intraword emphasis. Pandoc was previously using this more than necessary. Closes #3068.
2015-11-23AsciiDoc writer: Fixed code blocks.John MacFarlane
Closes #1861.
2015-10-25Template improvements (Andrew Dunning).John MacFarlane
- Added `keywords` to HTML templates and fixed alignment. - Updated dzslides template from source. - Added `lang`, `dir`, `quotes` to HTML templates; always make author and date display conditional. - Fixed `author` and `date` in asciidoc; added `keywords`, `abstract`. - Updated tests.
2015-03-15AsciiDoc writer: avoid wrapping after list marker.John MacFarlane
Closes #1858.
2015-03-15AsciiDoc writer: insert some needed blank lines.John MacFarlane
Closes #1860.
2014-08-31Markdown reader: better handling of paragraph in div.John MacFarlane
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 MacFarlane
Closes #1441.
2013-01-09Added Attr field to Header.John MacFarlane
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 MacFarlane
AsiiDoc doesn't support them.
2011-11-18Renamed to AsciiDoc. Fixed display math and escapes.John MacFarlane
AsciiDoc does not seem to have consistent escaping rules.
2011-11-18Updated tests for correct col width.John MacFarlane
2011-11-18Updated asciidoc test.John MacFarlane
The test output still contains some mistakes.
2011-11-16Added an asciidoc writer (partial).John MacFarlane
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)