aboutsummaryrefslogtreecommitdiff
path: root/test/writer.asciidoctor
AgeCommit message (Collapse)AuthorFilesLines
2021-09-21Use pretty-simple to format native output.John MacFarlane1-8/+8
Previously we used our own homespun formatting. But this produces over-long lines that aren't ideal for diffs in tests. Easier to use something off-the-shelf and standard. Closes #7580. Performance is slower by about a factor of 10, but this isn't really a problem because native isn't suitable as a serialization format. (For serialization you should use json, because the reader is so much faster than native.)
2020-09-19Asciidoctor images (#6671)argent01-1/+1
Support `Asciidoctor`'s block figures. Closes #6538.
2019-05-05Asciidoc writer: use `` `+...+` `` form for inline code.John MacFarlane1-7/+7
The old `` `a__b__c` `` yields emphasis inside code in asciidoc. To get a pure literal code span, use `` `+a__b__c+` ``.
2019-05-05Asciidoc writer: use proper smart quotes with asciidoctor.John MacFarlane1-8/+8
Asciidoctor has a different format for smart quotes. Closes #5487.
2019-02-09Fixed asciidoc display math in list contexts.John MacFarlane1-1/+1
2019-02-09Asciidoctor writer sets the stem attribute if it contains latexmathTG1-0/+1
2019-02-09Adds Asciidoctor sprcific writer and testsTG1-0/+648