From 35e1d6d9f70227e6dda6337276af909a92cd99d2 Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Tue, 16 Aug 2016 15:54:24 +0100 Subject: synchronize spacing of footnotes in help output - remove a space between `[` and `*` in the list of input formats, to match the list of output formats - add space after the `*`s, for improved readability --- pandoc.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pandoc.hs') diff --git a/pandoc.hs b/pandoc.hs index 70e24378a..97ab4680b 100644 --- a/pandoc.hs +++ b/pandoc.hs @@ -939,10 +939,10 @@ usageMessage programName = usageInfo (programName ++ " [OPTIONS] [FILES]" ++ "\nInput formats: " ++ wrapWords 16 78 readers'names ++ '\n' : replicate 16 ' ' ++ - "[ *only Pandoc's JSON version of native AST]" ++ "\nOutput formats: " ++ + "[* only Pandoc's JSON version of native AST]" ++ "\nOutput formats: " ++ wrapWords 16 78 writers'names ++ '\n' : replicate 16 ' ' ++ - "[**for pdf output, use latex or beamer and -o FILENAME.pdf]\nOptions:") + "[** for pdf output, use latex or beamer and -o FILENAME.pdf]\nOptions:") where writers'names = sort $ "json*" : "pdf**" : delete "json" (map fst writers) readers'names = sort $ "json*" : delete "json" (map fst readers) -- cgit v1.2.3