Removed deprecated and no longer used readerStrict in ReaderOptions.

This is handled by readerExtensions now.
This commit is contained in:
John MacFarlane
2014-07-30 18:32:06 -07:00
parent 71e76175be
commit f1885ae799
-2
View File
@@ -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