diff options
Diffstat (limited to 'src/tools/GFDoc.hs')
| -rw-r--r-- | src/tools/GFDoc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/GFDoc.hs b/src/tools/GFDoc.hs index 7b90c2504..0f5143f57 100644 --- a/src/tools/GFDoc.hs +++ b/src/tools/GFDoc.hs @@ -194,7 +194,7 @@ doc2latex (Doc title paras) = unlines $ para2latex :: Paragraph -> String para2latex p = case p of Text its -> concat (map item2latex its) - Item its -> "$\\bullet$" ++ concat (map item2latex its) + Item its -> "\n\n$\\bullet$" ++ concat (map item2latex its) ++ "\n\n" Code s -> unlines $ envLatex "verbatim" $ map (indent 2) $ remEmptyLines $ lines $ s New -> "\n" |
