diff options
Diffstat (limited to 'src/Text/Pandoc/Options.hs')
-rw-r--r-- | src/Text/Pandoc/Options.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs index 28a962607..ab4dda388 100644 --- a/src/Text/Pandoc/Options.hs +++ b/src/Text/Pandoc/Options.hs @@ -56,6 +56,7 @@ data ReaderOptions = ReaderOptions{ , readerStrict :: Bool -- ^ FOR TRANSITION ONLY , readerParseRaw :: Bool -- ^ Parse raw HTML, LaTeX , readerColumns :: Int -- ^ Number of columns in terminal + , readerTabStop :: Int -- ^ Tab stop } deriving (Show, Read) instance Default ReaderOptions @@ -65,4 +66,5 @@ instance Default ReaderOptions , readerStrict = False , readerParseRaw = False , readerColumns = 80 + , readerTabStop = 4 } |