forked from indymedia/epicyon
Don't replace .
parent
da316ef4d3
commit
40805f2ae0
|
@ -149,8 +149,7 @@ def addHtmlTags(baseDir: str,httpPrefix: str, \
|
||||||
"""
|
"""
|
||||||
if content.startswith('<p>'):
|
if content.startswith('<p>'):
|
||||||
return content
|
return content
|
||||||
wordsOnly=content.replace(',',' ').replace(';',' ').replace('.',' ')
|
words=content.replace(',',' ').replace(';',' ')
|
||||||
words=wordsOnly.split(' ')
|
|
||||||
replaceMentions={}
|
replaceMentions={}
|
||||||
replaceHashTags={}
|
replaceHashTags={}
|
||||||
replaceEmoji={}
|
replaceEmoji={}
|
||||||
|
|
Loading…
Reference in New Issue