diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-09-20 11:45:03 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-09-20 11:45:26 -0700 |
commit | e87db3739e731312c8bd0bf1c207f9dcd1b3ba28 (patch) | |
tree | 5a5072e613337371808d7d2fe0c437e3dc84e422 | |
parent | 582cb4b505b774fe8b7424363bcf310e97871c53 (diff) | |
download | pandoc-e87db3739e731312c8bd0bf1c207f9dcd1b3ba28.tar.gz |
Fixed bug in determining writer for xelatex engine.
This revises the last commit, fixing #3931.
-rw-r--r-- | src/Text/Pandoc/App.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs index deeac488d..89a804176 100644 --- a/src/Text/Pandoc/App.hs +++ b/src/Text/Pandoc/App.hs @@ -129,7 +129,7 @@ htmlEngines = ["wkhtmltopdf", "weasyprint", "prince"] engines :: [(String, String)] engines = map ("html",) htmlEngines ++ - map ("html5",) latexEngines ++ + map ("html5",) htmlEngines ++ map ("latex",) latexEngines ++ map ("beamer",) latexEngines ++ [ ("ms", "pdfroff") |