From e87db3739e731312c8bd0bf1c207f9dcd1b3ba28 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 20 Sep 2017 11:45:03 -0700 Subject: [PATCH] Fixed bug in determining writer for xelatex engine. This revises the last commit, fixing #3931. --- src/Text/Pandoc/App.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")