diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-27 23:52:03 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-27 23:52:03 -0800 |
commit | af3e07f2272df4d61779aba0123ba8ce8990a024 (patch) | |
tree | 6436da858dd49cfdd53855d6bfea2e449bb9754f /src | |
parent | 16629bf1ce268e86f849ddb44435c6829fd933d2 (diff) | |
download | pandoc-af3e07f2272df4d61779aba0123ba8ce8990a024.tar.gz |
Made `--highlight-style` and `--no-highlight` work in markdown2pdf.
Diffstat (limited to 'src')
-rw-r--r-- | src/markdown2pdf.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/markdown2pdf.hs b/src/markdown2pdf.hs index 811d5febd..a06623577 100644 --- a/src/markdown2pdf.hs +++ b/src/markdown2pdf.hs @@ -206,6 +206,7 @@ main = withTempDir "pandoc" "--include-before-body","--include-after-body", "--custom-header","--output", "--template", "--variable", + "--no-highlight", "--highlight-style", "--csl", "--bibliography", "--data-dir", "--listings"] let isOpt ('-':_) = True isOpt _ = False |