aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2014-12-11 20:28:47 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2014-12-15 21:35:47 +0000
commite6bd29e9b81ff40f59bb7f7cbca54d352a519576 (patch)
tree22c31a04f83f64c6934288117bf4ccac42a31107 /src/Text/Pandoc
parenta17f6f2f39c2bcd0bc1a788f49c1cc0c08102874 (diff)
downloadpandoc-e6bd29e9b81ff40f59bb7f7cbca54d352a519576.tar.gz
Text.Pandoc.Writers.RTF: Add blankline at end of output
Closes #1732
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Writers/RTF.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/RTF.hs b/src/Text/Pandoc/Writers/RTF.hs
index 43405ce3c..dfad4b0e2 100644
--- a/src/Text/Pandoc/Writers/RTF.hs
+++ b/src/Text/Pandoc/Writers/RTF.hs
@@ -106,7 +106,9 @@ writeRTF options (Pandoc meta@(Meta metamap) blocks) =
$ metadata
in if writerStandalone options
then renderTemplate' (writerTemplate options) context
- else body
+ else case reverse body of
+ ('\n':_) -> body
+ _ -> body ++ "\n"
-- | Construct table of contents from list of header blocks.
tableOfContents :: [Block] -> String