Bob Mottram 2019-11-04 21:08:43 +00:00
parent e742e3ccbc
commit b703a98b8f
1 changed files with 3 additions and 1 deletions

View File

@ -249,7 +249,9 @@ def removeLongWords(content: str,maxWordLength: int,longWordsList: []) -> str:
for wordStr in longWordsList:
if wordStr.startswith('<'):
continue
if '="' in wordStr:
if '=\"' in wordStr:
continue
if '@' in wordStr:
continue
if 'https:' in wordStr:
continue