diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-02 02:31:36 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-02 02:31:36 +0000 |
commit | 2cb22a1f8a5a656688733f0e1a50159a657249b6 (patch) | |
tree | 23bf89fb34fcea3b0c6285fcbbb51a7311318f29 /src/Text/Pandoc/Writers | |
parent | f5a3d444948510802facb3cb577fff4329da24a9 (diff) | |
download | pandoc-2cb22a1f8a5a656688733f0e1a50159a657249b6.tar.gz |
Man writer: better output for line break:
.PD 0 # set interparagraph space to 0
.P # new paragraph
.PD # reset interparagraph space to default.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@613 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Text/Pandoc/Writers')
-rw-r--r-- | src/Text/Pandoc/Writers/Man.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Man.hs b/src/Text/Pandoc/Writers/Man.hs index edd265f6a..c87257fb1 100644 --- a/src/Text/Pandoc/Writers/Man.hs +++ b/src/Text/Pandoc/Writers/Man.hs @@ -248,7 +248,7 @@ inlineToMan opts (Code str) = inlineToMan opts (Str str) = return $ text $ escapeString str inlineToMan opts (TeX str) = return $ text $ escapeCode str inlineToMan opts (HtmlInline str) = return $ text $ escapeCode str -inlineToMan opts (LineBreak) = return $ text "\n.P 0\n" +inlineToMan opts (LineBreak) = return $ text "\n.PD 0\n.P\n.PD\n" inlineToMan opts Space = return $ char ' ' inlineToMan opts (Link txt (src, _)) = do linktext <- inlineListToMan opts txt |