Merge pull request #3048 from tarleb/latex-mini-fix
LaTeX reader: drop duplicate `*` in bibtexKeyChars
This commit is contained in:
commit
1955ee9c72
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue