diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-08-20 15:11:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-20 15:11:54 +0200 |
commit | 2c9f17d5d70b22a5b19a4b67a9842858e77a918a (patch) | |
tree | dcd7cf743224ca0e4c64887d2e11aff51f8c5e94 | |
parent | 29ac4ae813749c79a47fd0c89f011b43df48636d (diff) | |
parent | 35e1d6d9f70227e6dda6337276af909a92cd99d2 (diff) | |
download | pandoc-2c9f17d5d70b22a5b19a4b67a9842858e77a918a.tar.gz |
Merge pull request #3074 from waldyrious/patch-1
synchronize spacing of footnotes in help output
-rw-r--r-- | pandoc.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |