diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Writers/Native.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Native.hs b/src/Text/Pandoc/Writers/Native.hs index 2ebe83d6b..d2b56cd17 100644 --- a/src/Text/Pandoc/Writers/Native.hs +++ b/src/Text/Pandoc/Writers/Native.hs @@ -73,6 +73,6 @@ writeNative opts (Pandoc meta blocks) = else Nothing withHead = if writerStandalone opts then \bs -> text ("Pandoc " ++ "(" ++ show meta ++ ")") $$ - bs <> cr + bs $$ cr else id in render colwidth $ withHead $ prettyList $ map prettyBlock blocks |