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:
@@ -111,7 +111,7 @@ class WordsScanner(Scanner):
|
|||||||
if not re.match(r"^\w+:\/\/", block)
|
if not re.match(r"^\w+:\/\/", block)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
for word in re.split("[^\w\-']", content):
|
for word in re.split("[^\w\-':]", content):
|
||||||
m = re.match(
|
m = re.match(
|
||||||
r"(?!^:\w+:$)^[^\w]*((?![\d_])\w.*(?![\d_])\w)[^\w]*$", word
|
r"(?!^:\w+:$)^[^\w]*((?![\d_])\w.*(?![\d_])\w)[^\w]*$", word
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user