diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-02-11 16:21:37 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-02-11 16:21:37 -0800 |
commit | 9ef7ecd47c317afff8d36f7b7e0fdb0e3baaa426 (patch) | |
tree | 4647ef89f67c5b99eb8d3a35b501b1e8679711e4 /src | |
parent | d9012a305b9e2a8ec45003baffe09ceea4e127c8 (diff) | |
download | pandoc-9ef7ecd47c317afff8d36f7b7e0fdb0e3baaa426.tar.gz |
Print texmath version in --version output.
Diffstat (limited to 'src')
-rw-r--r-- | src/pandoc.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs index 2c9f2ffb8..3853d360a 100644 --- a/src/pandoc.hs +++ b/src/pandoc.hs @@ -67,8 +67,8 @@ copyrightMessage = "\nCopyright (C) 2006-2012 John MacFarlane\n" ++ compileInfo :: String compileInfo = - "\nCompiled with citeproc-hs " ++ VERSION_citeproc_hs ++ " and " ++ - "highlighting-kate " ++ VERSION_highlighting_kate ++ + "\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 |