diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-15 22:14:29 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-15 22:14:29 -0800 |
commit | fcd1599b097ea7824c76e241464ec2cb65208ce5 (patch) | |
tree | 1638650d2d48ee7b80667c8d1adab9a714b4dcc7 /src/Text/Pandoc | |
parent | 4c03231e9b0eb4220725365da50263df10ad6059 (diff) | |
download | pandoc-fcd1599b097ea7824c76e241464ec2cb65208ce5.tar.gz |
FB2 writer: Add newline to output.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Writers/FB2.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/FB2.hs b/src/Text/Pandoc/Writers/FB2.hs index 233b8b32b..31fa4bee8 100644 --- a/src/Text/Pandoc/Writers/FB2.hs +++ b/src/Text/Pandoc/Writers/FB2.hs @@ -85,7 +85,7 @@ writeFB2 opts (Pandoc meta blocks) = flip evalStateT newFB $ do (imgs,missing) <- liftM imagesToFetch get >>= \s -> liftIO (fetchImages s) let body' = replaceImagesWithAlt missing body let fb2_xml = el "FictionBook" (fb2_attrs, [desc, body'] ++ notes ++ imgs) - return $ xml_head ++ (showContent fb2_xml) + return $ xml_head ++ (showContent fb2_xml) ++ "\n" where xml_head = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" fb2_attrs = |