forked from indymedia/epicyon
Extra space
parent
bd79e2e694
commit
92a17cce93
|
@ -207,7 +207,7 @@ def addHtmlTags(baseDir: str,httpPrefix: str, \
|
||||||
"""
|
"""
|
||||||
if content.startswith('<p>'):
|
if content.startswith('<p>'):
|
||||||
return content
|
return content
|
||||||
words=content.replace('\n',' --linebreak--').replace(',',' ').replace(';',' ').split(' ')
|
words=content.replace('\n',' --linebreak-- ').replace(',',' ').replace(';',' ').split(' ')
|
||||||
|
|
||||||
# add music tag if needed
|
# add music tag if needed
|
||||||
content=addMusicTag(content,'nowplaying')
|
content=addMusicTag(content,'nowplaying')
|
||||||
|
@ -265,7 +265,7 @@ def addHtmlTags(baseDir: str,httpPrefix: str, \
|
||||||
content=content.replace(wordStr,replaceStr)
|
content=content.replace(wordStr,replaceStr)
|
||||||
|
|
||||||
content=addWebLinks(content)
|
content=addWebLinks(content)
|
||||||
content=content.replace(' --linebreak--','</p><p>')
|
content=content.replace(' --linebreak-- ','</p><p>')
|
||||||
return '<p>'+content+'</p>'
|
return '<p>'+content+'</p>'
|
||||||
|
|
||||||
def getMentionsFromHtml(htmlText: str,matchStr="<span class=\"h-card\"><a href=\"") -> []:
|
def getMentionsFromHtml(htmlText: str,matchStr="<span class=\"h-card\"><a href=\"") -> []:
|
||||||
|
|
Loading…
Reference in New Issue