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
This commit is contained in:
parent
f5a3d44494
commit
2cb22a1f8a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue