summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers/Ms.hs
Commit message (Collapse)AuthorAge
* Update copyright notices to include 2018Albert Krewinkel2018-01-05
|
* Changes for skylighting-0.5.John MacFarlane2017-12-10
| | | | | | | | | | | | | | This fixes a bug in 2.0.4, whereby pandoc could not read the theme files generated with `--print-highlight-style`. It also fixes some CSS issues involving line numbers. Highlighted code blocks are now enclosed in a div with class sourceCode. Highlighting CSS no longer sets a generic color for pre and code; we only set these for class `sourceCode`. This will close #4133 and #4128.
* Source code reformatting.John MacFarlane2017-10-29
|
* hlint suggestions.John MacFarlane2017-10-29
|
* Automatic reformating by stylish-haskell.John MacFarlane2017-10-27
|
* Writers: adjusted for renderTemplate' changes.John MacFarlane2017-06-20
| | | | Now we raise a proper error on template failure.
* Use Control.Monad.State.Strict throughout.John MacFarlane2017-06-17
| | | | | This gives 20-30% speedup and reduction of memory usage in most of the writers.
* Switched Writer types to use Text.John MacFarlane2017-06-11
| | | | | | | | | | | * XML.toEntities: changed type to Text -> Text. * Shared.tabFilter -- fixed so it strips out CRs as before. * Modified writers to take Text. * Updated tests, benchmarks, trypandoc. [API change] Closes #3731.
* Update dates in copyright noticesAlbert Krewinkel2017-05-13
| | | | | This follows the suggestions given by the FSF for GPL licensed software. <https://www.gnu.org/prep/maintain/html_node/Copyright-Notices.html>
* Ms writer: make use of already defined render' (#3613)Alexander Krotov2017-04-28
|
* 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: update TODO comments.John MacFarlane2017-03-26
|
* Ms writer: Hyperlink table of contents and other improvements.John MacFarlane2017-03-26
|
* Ms writer: Add PDF outline bookmarks.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 writre: Added some escapes.John MacFarlane2017-03-26
|
* Removed unused imports.John MacFarlane2017-03-26
|
* 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: more spacing fixes for internal links.John MacFarlane2017-03-26
|
* Ms writer: improved internal links.John MacFarlane2017-03-26
|
* Ms writer: added TODO comment.John MacFarlane2017-03-25
|
* Ms writer: Implement header identifiers and internal links.John MacFarlane2017-03-25
|
* Ms writer: revise TODO comments.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
|
* Ms. writer: links: use footnote only for absolute URIs.John MacFarlane2017-03-25
|
* Ms writer: Got figures with ps and eps images working.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.
* Ms writer: support --toc, date, abstract.John MacFarlane2017-03-24
|
* Ms writer: changed some names and comments, man -> ms.John MacFarlane2017-03-24
|
* Ms writer: fixed rawblock/inline to accept "ms" format.John MacFarlane2017-03-24
|
* Recognize .roff extension as ms format.John MacFarlane2017-03-24
|
* Ms writer: Use custom .HRULE macro for horizontal rule.John MacFarlane2017-03-24
|
* Ms writer: warning for non-rendered raw content.John MacFarlane2017-03-24
|
* Allow creation of pdf via groff ms and pdfroff.John MacFarlane2017-03-23
| | | | pandoc -t ms -o output.pdf input.txt
* Ms writer: improved definition lists.John MacFarlane2017-03-23
| | | | | Use standard .IP macro. Also properly escape ".
* Ms writer: use .IP for more standard definition lists.John MacFarlane2017-03-23
|
* Ms writer: fixed hard line breaks.John MacFarlane2017-03-23
|
* MS writer: updated TODO comment.John MacFarlane2017-03-23
|
* Ms writer: Super/subscript support.John MacFarlane2017-03-23
| | | | | Also added some macro definitions to default template to support subscripts + better superscripts.
* Ms writer: support for fake smallcaps.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.