Fixed exponential parsing bug in textile reader.

Closes #3020.
This commit is contained in:
John MacFarlane 2016-07-14 08:42:38 -07:00
parent 106786ef1b
commit 00b11bcbcf

View file

@ -277,6 +277,7 @@ definitionListStart :: Parser [Char] ParserState Inlines
definitionListStart = try $ do
char '-'
whitespace
notFollowedBy newline
trimInlines . mconcat <$>
many1Till inline (try (string ":=")) <* optional whitespace