diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-02-07 19:58:28 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-02-07 19:58:28 -0800 |
commit | 7f4e1075be9ab08e71f357515a8240316ddc39e9 (patch) | |
tree | edb5ea02b49c6256287f3f828a470f39eaaba461 | |
parent | 7f6eff3b3bb069934ee4d550556f02b4e9d890a7 (diff) | |
download | pandoc-7f4e1075be9ab08e71f357515a8240316ddc39e9.tar.gz |
Changes to --version.
Print default user data directory.
Put language names in lowercase and omit 'alert' and 'alert_indent'.
-rw-r--r-- | pandoc.hs | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -69,7 +69,8 @@ compileInfo = "\nCompiled with citeproc-hs " ++ VERSION_citeproc_hs ++ ", texmath " ++ VERSION_texmath ++ ", highlighting-kate " ++ VERSION_highlighting_kate ++ ".\nSyntax highlighting is supported for the following languages:\n " ++ - wrapWords 4 78 languages + wrapWords 4 78 + [map toLower l | l <- languages, l /= "Alert" && l /= "Alert_indent"] -- | Converts a list of strings into a single string with the items printed as -- comma separated words in lines with a maximum line length. @@ -704,8 +705,10 @@ options = (NoArg (\_ -> do prg <- getProgName - UTF8.hPutStrLn stdout (prg ++ " " ++ pandocVersion ++ compileInfo ++ - copyrightMessage) + defaultDatadir <- getAppUserDataDirectory "pandoc" + UTF8.hPutStrLn stdout (prg ++ " " ++ pandocVersion ++ + compileInfo ++ "\nDefault data directory: " ++ + defaultDatadir ++ copyrightMessage) exitWith ExitSuccess )) "" -- "Print version" |