diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2016-07-29 20:53:43 +0200 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2016-07-29 20:53:43 +0200 |
commit | f9afc0d3782cac05f0e8e9b39d30ca29d934bdf2 (patch) | |
tree | d6148762baaea78330b5619a79e297b83f8e38cd | |
parent | 7af8bfd8c8beeeeaeb1bc022b1104a8e13558080 (diff) | |
download | pandoc-f9afc0d3782cac05f0e8e9b39d30ca29d934bdf2.tar.gz |
LaTeX reader: drop duplicate `*` in bibtexKeyChars
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs index 10e2b9833..cb6b183f9 100644 --- a/src/Text/Pandoc/Readers/LaTeX.hs +++ b/src/Text/Pandoc/Readers/LaTeX.hs @@ -1282,7 +1282,7 @@ citationLabel = optional sp *> <* optional sp <* optional (char ',') <* optional sp) - where isBibtexKeyChar c = isAlphaNum c || c `elem` (".:;?!`'()/*@_+=-[]*" :: String) + where isBibtexKeyChar c = isAlphaNum c || c `elem` (".:;?!`'()/*@_+=-[]" :: String) cites :: CitationMode -> Bool -> LP [Citation] cites mode multi = try $ do |