aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Options.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-08-10 23:45:28 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-08-10 23:46:59 -0700
commit0283616a4a4e5c9770a9bf2247efad96dcf984f8 (patch)
tree44d9b69041ebf3af4f3611c05bb0bacd077adf67 /src/Text/Pandoc/Options.hs
parent737d09e325a65ad37f97b03371d1999c0360dea0 (diff)
downloadpandoc-0283616a4a4e5c9770a9bf2247efad96dcf984f8.tar.gz
Remove writerUserDataDir from WriterOptions.
It is now carried in CommonState in PandocMonad instances. (And thus it can be used by readers too.)
Diffstat (limited to 'src/Text/Pandoc/Options.hs')
-rw-r--r--src/Text/Pandoc/Options.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs
index d7e77010e..89b26deb0 100644
--- a/src/Text/Pandoc/Options.hs
+++ b/src/Text/Pandoc/Options.hs
@@ -202,7 +202,6 @@ data WriterOptions = WriterOptions
, writerIdentifierPrefix :: String -- ^ Prefix for section & note ids in HTML
-- and for footnote marks in markdown
, writerSourceURL :: Maybe String -- ^ Absolute URL + directory of 1st source file
- , writerUserDataDir :: Maybe FilePath -- ^ Path of user data directory
, writerCiteMethod :: CiteMethod -- ^ How to print cites
, writerHtmlQTags :: Bool -- ^ Use @<q>@ tags for quotes in HTML
, writerSlideLevel :: Maybe Int -- ^ Force header level of slides
@@ -240,7 +239,6 @@ instance Default WriterOptions where
, writerEmailObfuscation = NoObfuscation
, writerIdentifierPrefix = ""
, writerSourceURL = Nothing
- , writerUserDataDir = Nothing
, writerCiteMethod = Citeproc
, writerHtmlQTags = False
, writerSlideLevel = Nothing