summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/App.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-09-20 11:45:03 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-09-20 11:45:26 -0700
commite87db3739e731312c8bd0bf1c207f9dcd1b3ba28 (patch)
tree5a5072e613337371808d7d2fe0c437e3dc84e422 /src/Text/Pandoc/App.hs
parent582cb4b505b774fe8b7424363bcf310e97871c53 (diff)
Fixed bug in determining writer for xelatex engine.
This revises the last commit, fixing #3931.
Diffstat (limited to 'src/Text/Pandoc/App.hs')
-rw-r--r--src/Text/Pandoc/App.hs2
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")