mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #162 from mickaobrien/master
Update word regex for spellcheck
This commit is contained in:
commit
bf86100500
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ define [
|
|||
positions = []
|
||||
for line, row in lines
|
||||
if !linesToProcess? or linesToProcess[row]
|
||||
wordRegex = /\\?['a-zA-Z\u00C0-\u00FF]+/g
|
||||
wordRegex = /\\?['a-zA-Z\u00C0-\u017F]+/g
|
||||
while (result = wordRegex.exec(line))
|
||||
word = result[0]
|
||||
if word[0] == "'"
|
||||
|
|
Loading…
Reference in a new issue