aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-01-21 09:54:11 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-01-21 09:54:11 -0800
commit09b7ae4073bd9ed2f15d69a36feb1bf65221722f (patch)
tree23dfac45726c04a01e9f288554879b09d9a0ecf0
parenta75a0762afc830772354ca56a370d06873af7dab (diff)
downloadpandoc-09b7ae4073bd9ed2f15d69a36feb1bf65221722f.tar.gz
pandoc: Removed deprecated --xetex option.
-rw-r--r--src/pandoc.hs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/pandoc.hs b/src/pandoc.hs
index a9a35ac57..bff98141d 100644
--- a/src/pandoc.hs
+++ b/src/pandoc.hs
@@ -102,7 +102,6 @@ data Opt = Opt
, optSectionDivs :: Bool -- ^ Put sections in div tags in HTML
, optIncremental :: Bool -- ^ Use incremental lists in Slidy/S5
, optSelfContained :: Bool -- ^ Make HTML accessible offline
- , optXeTeX :: Bool -- ^ Format latex for xetex
, optSmart :: Bool -- ^ Use smart typography
, optOldDashes :: Bool -- ^ Parse dashes like pandoc <=1.8.2.1
, optHtml5 :: Bool -- ^ Produce HTML5 in HTML
@@ -151,7 +150,6 @@ defaultOpts = Opt
, optSectionDivs = False
, optIncremental = False
, optSelfContained = False
- , optXeTeX = False
, optSmart = False
, optOldDashes = False
, optHtml5 = False
@@ -360,14 +358,6 @@ options =
optStandalone = True }))
"" -- "Make slide shows include all the needed js and css"
- , Option "" ["xetex"]
- (NoArg
- (\opt -> do
- warn $ "pandoc: --xetex is deprecated. "
- ++ "It is no longer needed for use with XeTeX."
- return opt { optXeTeX = True }))
- "" -- "Format latex for processing by XeTeX"
-
, Option "" ["chapters"]
(NoArg
(\opt -> return opt { optChapters = True }))