diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-29 14:17:10 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-29 14:17:10 -0800 |
commit | cd190be09e6e41c6dd7669191eeb1b4d7f0697b9 (patch) | |
tree | 74f7389ed64f55abb0b65bd632c8964e8f8ae4c3 | |
parent | 763a9610cdcfbbcd483abf2fd3b754039037a769 (diff) | |
download | pandoc-cd190be09e6e41c6dd7669191eeb1b4d7f0697b9.tar.gz |
Made `--version` informative about versions of dependencies.
-rw-r--r-- | src/pandoc.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs index 27e0dc4df..6944a6a78 100644 --- a/src/pandoc.hs +++ b/src/pandoc.hs @@ -63,8 +63,9 @@ copyrightMessage = "\nCopyright (C) 2006-2011 John MacFarlane\n" ++ compileInfo :: String compileInfo = - "\nCompiled with citeproc support." ++ - "\nCompiled with syntax highlighting support for:\n " ++ + "\nCompiled with citeproc-hs " ++ VERSION_citeproc_hs ++ " and " ++ + "highlighting-kate " ++ VERSION_highlighting_kate ++ + ".\nSyntax highlighting is supported for the following languages:\n " ++ wrapWords 4 78 languages -- | Converts a list of strings into a single string with the items printed as |