diff --git a/content.py b/content.py
index 25124549..8f8f4612 100644
--- a/content.py
+++ b/content.py
@@ -273,7 +273,10 @@ def removeLongWords(content: str,maxWordLength: int,longWordsList: []) -> str:
elif 'dat:' in wordStr:
continue
if '<' in wordStr:
- wordStr=wordStr.split('<',1)[0]
+ replaceWord=wordStr.split('<',1)[0]
+ content= \
+ content.replace(wordStr,replaceWord)
+ wordStr=replaceWord
if '/' in wordStr:
continue
if len(wordStr[maxWordLength:]) '):
+ if not content.endswith('
@foo Some random text.
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
' + resultText=removeLongWords(exampleText,40,[]) + assert resultText=='@foo Some random text.
' + exampleText='This post has a web links https://somesite.net\n\nAnd some other text' linkedText=addWebLinks(exampleText) assert 'https://somesite.netABCABCABCABCABCABCABCABCABCABCABCABCABCA<\p>' - exampleText='Some text.\n\nHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHHAHAHAHAHAHAHAHAHAHAHAHAHHAHAHAHAHAHAHAHAH!
' - resultText=removeLongWords(exampleText,40,[]) - assert resultText=='Some text.\n\nHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAH
' - def testAddEmoji(): print('testAddEmoji') @@ -1693,13 +1693,13 @@ def testRecentPostsCache(): def runAllTests(): print('Running tests...') + testWebLinks() testRecentPostsCache() testTheme() testSaveLoadJson() testCommentJson() testGetStatusNumber() testAddEmoji() - testWebLinks() testActorParsing() testHttpsig() testCache()