summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Textile.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2012-09-27 16:06:29 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2012-09-27 16:06:29 -0700
commit35662e14a9fafcc7d4202cec75cac47b656bb53c (patch)
treefdf7915f4dacd42f06db8b2ac39d20c9f7520351 /src/Text/Pandoc/Readers/Textile.hs
parent731415a4e598adaac894865f72b935a742e569ec (diff)
Removed nullBlock.
Don't use nullBlock in Textile reader. Better to know about parsing problems than to skip stuff when we get stuck.
Diffstat (limited to 'src/Text/Pandoc/Readers/Textile.hs')
-rw-r--r--src/Text/Pandoc/Readers/Textile.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Textile.hs b/src/Text/Pandoc/Readers/Textile.hs
index dc95d9a56..49f20ba29 100644
--- a/src/Text/Pandoc/Readers/Textile.hs
+++ b/src/Text/Pandoc/Readers/Textile.hs
@@ -130,7 +130,7 @@ blockParsers = [ codeBlock
, rawLaTeXBlock'
, maybeExplicitBlock "table" table
, maybeExplicitBlock "p" para
- , nullBlock ]
+ ]
-- | Any block in the order of definition of blockParsers
block :: Parser [Char] ParserState Block