summaryrefslogtreecommitdiff
path: root/src/Text
diff options
context:
space:
mode:
authormpickering <matthewtpickering@gmail.com>2014-05-07 13:03:45 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2014-05-07 09:32:25 -0700
commit0050b509052ff81ba021b98fdbc573d3475ed74c (patch)
tree0ddc61b856c202216a663de98f857e11a894846a /src/Text
parent0048b8c68c338048d2c78fc36cceba5fbe6f7110 (diff)
Fix textile reader hanging.
Textile reader hung on pandoc -f textile http://johnmacfarlane.net/pandoc/demo/example25.textile The reader no longer hangs.
Diffstat (limited to 'src/Text')
-rw-r--r--src/Text/Pandoc/Readers/Textile.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Textile.hs b/src/Text/Pandoc/Readers/Textile.hs
index 2f1fd30b4..f7c87ab5a 100644
--- a/src/Text/Pandoc/Readers/Textile.hs
+++ b/src/Text/Pandoc/Readers/Textile.hs
@@ -513,7 +513,8 @@ link = try $ do
char '"' *> notFollowedBy (oneOf " \t\n\r")
attr <- attributes
name <- trimInlines . mconcat <$>
- withQuoteContext InSingleQuote (manyTill inline (try (string "\":")))
+ withQuoteContext InDoubleQuote (many1Till inline (try (char '"')))
+ char ':'
let stop = if bracketed
then char ']'
else lookAhead $ space <|>