small fix (#26)

* updated README

* improved %words command

* new words scanner

* fix test

* concurrent fast analysis

* fast analysis if fresh

* better memory handling

* fix "stuck" bug

* updated README

* improved %words command

* small fix
This commit is contained in:
Klemek
2021-04-07 19:36:24 +02:00
committed by GitHub
parent b018650ce4
commit 8cc0e1fe65
+1 -1
View File
@@ -111,7 +111,7 @@ class WordsScanner(Scanner):
if not re.match(r"^\w+:\/\/", block)
]
)
for word in re.split("[^\w\-']", content):
for word in re.split("[^\w\-':]", content):
m = re.match(
r"(?!^:\w+:$)^[^\w]*((?![\d_])\w.*(?![\d_])\w)[^\w]*$", word
)