aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-12-03 22:14:04 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2010-12-03 23:10:52 -0800
commitf415e9e1194972baa2743a5c63cb07023d494925 (patch)
treeb2310b81ed05cf9b1ff32265570eb650b4e90d80 /src
parentc3866f3c6671300f27ae40927fe6f8a2a85cb28b (diff)
downloadpandoc-f415e9e1194972baa2743a5c63cb07023d494925.tar.gz
Textile reader: parse raw by default.
It's part of the textile spec to allow raw HTML, just as with markdown. -R is no longer needed in test suite.
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Readers/Textile.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers/Textile.hs b/src/Text/Pandoc/Readers/Textile.hs
index 650060c3d..276f188c5 100644
--- a/src/Text/Pandoc/Readers/Textile.hs
+++ b/src/Text/Pandoc/Readers/Textile.hs
@@ -90,6 +90,8 @@ specialChars = "\\[]<>*#_@~-+^&,.;:!?|\"'%"
-- | Generate a Pandoc ADT from a textile document
parseTextile :: GenParser Char ParserState Pandoc
parseTextile = do
+ -- textile allows raw HTML
+ updateState (\state -> state { stateParseRaw = True })
many blankline
blocks <- parseBlocks
return $ Pandoc (Meta [Str ""] [[Str ""]] [Str ""]) blocks -- FIXME