summaryrefslogtreecommitdiff
path: root/test/writer.ms
Commit message (Collapse)AuthorAge
* Added `spaced_reference_links` extension.John MacFarlane2017-05-25
| | | | | | | | | | | | | | This is now the default for pandoc's Markdown. It allows whitespace between the two parts of a reference link: e.g. [a] [b] [b]: url This is now forbidden by default. Closes #2602.
* Ms writer: wider indents for lists.John MacFarlane2017-04-06
| | | | | Previously some indents weren't wide enough, leading the list item to start on a line after the marker.
* Ms writer: respect text wrapping options.John MacFarlane2017-04-05
|
* Ms writer improvements:John MacFarlane2017-04-04
| | | | | - added some variables to the default template. - cleaner output for images (stringify alt text).
* Ms writer: ensure that @ is escaped in URIs.John MacFarlane2017-04-04
| | | | | Otherwise we may get unescaped @s that give eqn fits, with @ as the delimiter character.
* Ms writer: added syntax highlighting.John MacFarlane2017-04-01
| | | | | | | | | | Closes #3547. Macro definitions are inserted in the template when there is highlighted code. Limitations: background colors and underline currently not supported.
* Ms writer: Hyperlink table of contents and other improvements.John MacFarlane2017-03-26
|
* Ms writer: Add PDF outline bookmarks.John MacFarlane2017-03-26
|
* Fixed a test not updated on last commit.John MacFarlane2017-03-26
|
* Ms writer: Use @ instead of | for inline math delimiter.John MacFarlane2017-03-26
| | | | | The `|` delimiter had a bad interaction with tbl. See discussion in #1839.
* Ms writer: Support external links.John MacFarlane2017-03-26
| | | | Also add config options for link color.
* Ms writer: better placement of header anchors.John MacFarlane2017-03-26
|
* Ms writer: Implement header identifiers and internal links.John MacFarlane2017-03-25
|
* Ms writer: use light gray for strikeout.John MacFarlane2017-03-25
| | | | | Pending groff definitions for striking out an arbitrary section of text (not just a few words).
* Ms writer: improved pdf metadata.John MacFarlane2017-03-25
|
* Updated test suite for ms template change.John MacFarlane2017-03-25
|
* Ms. writer: links: use footnote only for absolute URIs.John MacFarlane2017-03-25
|
* Updated tests.John MacFarlane2017-03-25
|
* Ms writer: Use indented paragraphs after first in section.John MacFarlane2017-03-24
| | | | | Note that the current indentation setting is 0; see the settings in the template.
* default.ms: Add settings for document variables like width.John MacFarlane2017-03-24
|
* Ms writer: support --toc, date, abstract.John MacFarlane2017-03-24
|
* Ms writer: Use custom .HRULE macro for horizontal rule.John MacFarlane2017-03-24
|
* Ms writer: improved definition lists.John MacFarlane2017-03-23
| | | | | Use standard .IP macro. Also properly escape ".
* Ms writer: fixed hard line breaks.John MacFarlane2017-03-23
|
* Updated ms tests.John MacFarlane2017-03-23
|
* Ms. writer: don't render links in footnotes as footnotes.John MacFarlane2017-03-23
|
* Ms writer: Improved footnotes.John MacFarlane2017-03-23
|
* Ms writer: fixed strong/emph combination.John MacFarlane2017-03-23
| | | | Perhaps something similar is needed in the man writer.
* Initial addition of groff ms writer.John MacFarlane2017-03-23
* 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.