summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Options.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2012-07-27 16:01:17 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2012-07-27 16:01:17 -0700
commit7905feac3fce58bb25bb3cc773fd9e1030699ba3 (patch)
tree21c7026e586b68ac6db0796eb64eda62455e0986 /src/Text/Pandoc/Options.hs
parentf0b9d52fd3fcdd61e1ea7f5ac98eefe7e502cf8a (diff)
Removed deprecated writerXeTeX.
Diffstat (limited to 'src/Text/Pandoc/Options.hs')
-rw-r--r--src/Text/Pandoc/Options.hs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs
index c64f7f1cb..cfeaa467f 100644
--- a/src/Text/Pandoc/Options.hs
+++ b/src/Text/Pandoc/Options.hs
@@ -142,7 +142,6 @@ data HTMLSlideVariant = S5Slides
deriving (Show, Read, Eq)
-- | Options for writers
-{-# DEPRECATED writerXeTeX "writerXeTeX no longer does anything" #-}
data WriterOptions = WriterOptions
{ writerStandalone :: Bool -- ^ Include header and footer
, writerTemplate :: String -- ^ Template to use in standalone mode
@@ -152,7 +151,6 @@ data WriterOptions = WriterOptions
, writerTableOfContents :: Bool -- ^ Include table of contents
, writerSlideVariant :: HTMLSlideVariant -- ^ Are we writing S5, Slidy or Slideous?
, writerIncremental :: Bool -- ^ True if lists should be incremental
- , writerXeTeX :: Bool -- ^ Create latex suitable for use by xetex
, writerHTMLMathMethod :: HTMLMathMethod -- ^ How to print math in HTML
, writerIgnoreNotes :: Bool -- ^ Ignore footnotes (used in making toc)
, writerNumberSections :: Bool -- ^ Number sections in LaTeX
@@ -192,7 +190,6 @@ instance Default WriterOptions where
, writerTableOfContents = False
, writerSlideVariant = NoSlides
, writerIncremental = False
- , writerXeTeX = False
, writerHTMLMathMethod = PlainMath
, writerIgnoreNotes = False
, writerNumberSections = False