aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-08-20 15:11:54 +0200
committerGitHub <noreply@github.com>2016-08-20 15:11:54 +0200
commit2c9f17d5d70b22a5b19a4b67a9842858e77a918a (patch)
treedcd7cf743224ca0e4c64887d2e11aff51f8c5e94
parent29ac4ae813749c79a47fd0c89f011b43df48636d (diff)
parent35e1d6d9f70227e6dda6337276af909a92cd99d2 (diff)
downloadpandoc-2c9f17d5d70b22a5b19a4b67a9842858e77a918a.tar.gz
Merge pull request #3074 from waldyrious/patch-1
synchronize spacing of footnotes in help output
-rw-r--r--pandoc.hs4
1 files changed, 2 insertions, 2 deletions
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)