diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-07-30 18:31:40 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-07-30 18:32:06 -0700 |
commit | f1885ae799fd29f243b0d51d63bf6bb3a1b0f035 (patch) | |
tree | 95304aef7a07f1697e4827a4ce775ef16deaa5ca /src/Text/Pandoc | |
parent | 71e76175be8a5fabb807a8462a1ab315868c8914 (diff) | |
download | pandoc-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.hs | 2 |
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 |