aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-07-30 18:31:40 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-07-30 18:32:06 -0700
commitf1885ae799fd29f243b0d51d63bf6bb3a1b0f035 (patch)
tree95304aef7a07f1697e4827a4ce775ef16deaa5ca /src/Text/Pandoc
parent71e76175be8a5fabb807a8462a1ab315868c8914 (diff)
downloadpandoc-f1885ae799fd29f243b0d51d63bf6bb3a1b0f035.tar.gz
Removed deprecated and no longer used readerStrict in ReaderOptions.
This is handled by readerExtensions now.
Diffstat (limited to 'src/Text/Pandoc')
-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 961e8559c..2de1a9e35 100644
--- a/src/Text/Pandoc/Options.hs
+++ b/src/Text/Pandoc/Options.hs
@@ -202,7 +202,6 @@ strictExtensions = Set.fromList
data ReaderOptions = ReaderOptions{
readerExtensions :: Set Extension -- ^ Syntax extensions
, readerSmart :: Bool -- ^ Smart punctuation
- , readerStrict :: Bool -- ^ FOR TRANSITION ONLY
, readerStandalone :: Bool -- ^ Standalone document with header
, readerParseRaw :: Bool -- ^ Parse raw HTML, LaTeX
, readerColumns :: Int -- ^ Number of columns in terminal
@@ -222,7 +221,6 @@ instance Default ReaderOptions
where def = ReaderOptions{
readerExtensions = pandocExtensions
, readerSmart = False
- , readerStrict = False
, readerStandalone = False
, readerParseRaw = False
, readerColumns = 80