aboutsummaryrefslogtreecommitdiff
path: root/test/tables.ms
AgeCommit message (Collapse)AuthorFilesLines
2018-04-21Markdown reader/writer: spacing adjustments in tables.John MacFarlane1-3/+3
* Markdown writer now includes a blank line at the end of the row in a single-row multiline table, to prevent it from being interpreted as a simple table. Closes #4578. * Markdown reader does a better job computing the relative width of the last column in a multiline table, so we can round-trip tables without constantly shrinking the last column.
2018-04-14Man writer: Don't escape U+2019 as '.John MacFarlane1-4/+4
Closes #4550.
2017-04-05Ms writer: respect text wrapping options.John MacFarlane1-26/+13
2017-03-26Ms writer: Use @ instead of | for inline math delimiter.John MacFarlane1-76/+76
The `|` delimiter had a bad interaction with tbl. See discussion in #1839.
2017-03-23Initial addition of groff ms writer.John MacFarlane1-0/+280
* New module: Text.Pandoc.Writers.Ms. * New template: default.ms. * The writer uses texmath's new eqn writer to convert math to eqn format, so a ms file produced with this writer should be processed with `groff -ms -e` if it contains math.