diff --git a/content.py b/content.py index 5676bdcd0..ef1113222 100644 --- a/content.py +++ b/content.py @@ -103,6 +103,12 @@ def htmlReplaceQuoteMarks(content: str) -> str: if '"' not in content: return content + # only if there are a few quote marks + if content.count('"') > 4: + return content + if content.count('"') > 4: + return content + newContent = content if '"' in content: sections = content.split('"')