Small improvement to textile reader fix. Removed 'try'.
This commit is contained in:
parent
0050b50905
commit
f0f88111e6
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ link = try $ do
|
|||
char '"' *> notFollowedBy (oneOf " \t\n\r")
|
||||
attr <- attributes
|
||||
name <- trimInlines . mconcat <$>
|
||||
withQuoteContext InDoubleQuote (many1Till inline (try (char '"')))
|
||||
withQuoteContext InDoubleQuote (many1Till inline (char '"'))
|
||||
char ':'
|
||||
let stop = if bracketed
|
||||
then char ']'
|
||||
|
|
Loading…
Reference in a new issue