diff --git a/content.py b/content.py index e39b0d4d..a4bcb9e8 100644 --- a/content.py +++ b/content.py @@ -208,6 +208,7 @@ def addHtmlTags(baseDir: str,httpPrefix: str, \ if content.startswith('

'): return content content=content.replace('\n',' --linebreak-- ') + content=addMusicTag(content,'nowplaying') words=content.replace(',',' ').replace(';',' ').split(' ') # remove . for words which are not mentions @@ -263,7 +264,6 @@ def addHtmlTags(baseDir: str,httpPrefix: str, \ content=content.replace(wordStr,replaceStr) content=addWebLinks(content) - content=addMusicTag(content,'nowplaying') content=content.replace(' --linebreak-- ','

') return '

'+content+'

'