Removed unneeded space after "\\item" in LaTeX and ConTeXt output.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1384 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
80715bd126
commit
f1914c21b7
2 changed files with 2 additions and 2 deletions
|
@ -221,7 +221,7 @@ tableRowToConTeXt cols = do
|
|||
|
||||
listItemToConTeXt :: [Block] -> State WriterState Doc
|
||||
listItemToConTeXt list = blockListToConTeXt list >>=
|
||||
return . (text "\\item " $$) . (nest 2)
|
||||
return . (text "\\item" $$) . (nest 2)
|
||||
|
||||
defListItemToConTeXt :: ([Inline], [Block]) -> State WriterState BlockWrapper
|
||||
defListItemToConTeXt (term, def) = do
|
||||
|
|
|
@ -227,7 +227,7 @@ tableRowToLaTeX cols = mapM blockListToLaTeX cols >>=
|
|||
(if isEmpty row then empty else text " & ") <> item) empty
|
||||
|
||||
listItemToLaTeX :: [Block] -> State WriterState Doc
|
||||
listItemToLaTeX lst = blockListToLaTeX lst >>= return . (text "\\item " $$) .
|
||||
listItemToLaTeX lst = blockListToLaTeX lst >>= return . (text "\\item" $$) .
|
||||
(nest 2)
|
||||
|
||||
defListItemToLaTeX :: ([Inline], [Block]) -> State WriterState Doc
|
||||
|
|
Loading…
Reference in a new issue