aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Parsing.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-05-11 16:17:20 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-05-11 16:17:20 -0700
commit9857aa866af243d3fe89b5a951a4463e825e6a0c (patch)
tree8610326a683e4249d7f84c3a7c7d14992dd28aad /src/Text/Pandoc/Parsing.hs
parent4b251e93b4012f220586f0f878f0edac363e3c3a (diff)
downloadpandoc-9857aa866af243d3fe89b5a951a4463e825e6a0c.tar.gz
HTML reader: Fixed detection of self-closing tags.
Earlier versions had a bug and would wrongly think opening tags containing attributes with slashes in them were self-closing. Closes #2146.
Diffstat (limited to 'src/Text/Pandoc/Parsing.hs')
-rw-r--r--src/Text/Pandoc/Parsing.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Parsing.hs b/src/Text/Pandoc/Parsing.hs
index d8beb1810..91385eae8 100644
--- a/src/Text/Pandoc/Parsing.hs
+++ b/src/Text/Pandoc/Parsing.hs
@@ -1206,7 +1206,7 @@ citeKey = try $ do
guard =<< notAfterString
suppress_author <- option False (char '-' *> return True)
char '@'
- firstChar <- alphaNum <|> char '_'
+ firstChar <- alphaNum <|> char '_' <|> char '*' -- @* for wildcard in nocite
let regchar = satisfy (\c -> isAlphaNum c || c == '_')
let internal p = try $ p <* lookAhead regchar
rest <- many $ regchar <|> internal (oneOf ":.#$%&-+?<>~/")