Fixed bug in Notes ($$ instead of <>), which caused
note blocks to be indented. git-svn-id: https://pandoc.googlecode.com/svn/trunk@646 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
4e81ef28ed
commit
e252fa300a
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ notesToMan opts notes =
|
|||
if null notes
|
||||
then return empty
|
||||
else mapM (\(num, note) -> noteToMan opts num note) (zip [1..] notes) >>=
|
||||
(return . (text ".SH NOTES\n" <>) . vcat)
|
||||
(return . (text ".SH NOTES" $$) . vcat)
|
||||
|
||||
-- | Return man representation of a note.
|
||||
noteToMan :: WriterOptions -> Int -> [Block] -> State WriterState Doc
|
||||
|
|
Loading…
Add table
Reference in a new issue