diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/GenerateManpage.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/GenerateManpage.hs b/util/GenerateManpage.hs index 540c74c..5137184 100644 --- a/util/GenerateManpage.hs +++ b/util/GenerateManpage.hs @@ -36,7 +36,7 @@ allBindings xs = map (binding . map trim) (xs =~ "(.*)--(.*)@@(.*)") -- FIXME: What escaping should we be doing on these strings? troff :: (String, String) -> String -troff (key, desc) = ".IP \\fB" ++ key ++ "\\fR\n" ++ desc ++ "\n" +troff (key, desc) = ".IP\n \\fB" ++ key ++ "\\fR\n" ++ desc ++ "\n" replace :: Eq a => a -> a -> [a] -> [a] replace x y = map (\a -> if a == x then y else a) |