mirror of https://gitlab.com/bashrc2/epicyon
Handle . within content when extracting tags
parent
40805f2ae0
commit
68b2c7632a
|
@ -150,6 +150,15 @@ def addHtmlTags(baseDir: str,httpPrefix: str, \
|
||||||
if content.startswith('<p>'):
|
if content.startswith('<p>'):
|
||||||
return content
|
return content
|
||||||
words=content.replace(',',' ').replace(';',' ')
|
words=content.replace(',',' ').replace(';',' ')
|
||||||
|
# remove . for words which are not mentions
|
||||||
|
wordCtr=0
|
||||||
|
for wordIndex in range(0,len(words)-1):
|
||||||
|
wordStr=words[wordIndex]
|
||||||
|
if wordStr.endswith('.'):
|
||||||
|
if not wordStr.startswith('@'):
|
||||||
|
words[wordIndex]=words[wordIndex][:-1]
|
||||||
|
if wordStr.startsswith('.'):
|
||||||
|
words[wordIndex]=words[wordIndex][1:]
|
||||||
replaceMentions={}
|
replaceMentions={}
|
||||||
replaceHashTags={}
|
replaceHashTags={}
|
||||||
replaceEmoji={}
|
replaceEmoji={}
|
||||||
|
|
Loading…
Reference in New Issue