diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-03-15 21:04:14 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-03-23 10:14:16 +0100 |
commit | 6c204ea2bd9b9526af3b60485d3787da6b7bf8ac (patch) | |
tree | cc2f21272db2143a2e657ce4935e2e2c530fa704 /test/Tests | |
parent | f4ac0edf2a5087f3f988147726813a6240288945 (diff) | |
download | pandoc-6c204ea2bd9b9526af3b60485d3787da6b7bf8ac.tar.gz |
Initial addition of groff ms writer.
* 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.
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Old.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Tests/Old.hs b/test/Tests/Old.hs index 9e772e791..3c473792f 100644 --- a/test/Tests/Old.hs +++ b/test/Tests/Old.hs @@ -143,6 +143,9 @@ tests = [ testGroup "markdown" , testGroup "muse" [ testGroup "writer" $ writerTests "muse" ] + , testGroup "ms" + [ testGroup "writer" $ writerTests "ms" + ] ] -- makes sure file is fully closed after reading |