diff --git a/files/helpers/owoify.py b/files/helpers/owoify.py index 3693258fe..665b44c15 100644 --- a/files/helpers/owoify.py +++ b/files/helpers/owoify.py @@ -28,6 +28,9 @@ OWO_EXCLUDE_PATTERNS = [ ] def owoify(source): + if '`' in source or '
' in source or '' in source:
+		return source
+
 	word_matches = OWO_WORD_REGEX.findall(source)
 	space_matches = OWO_SPACE_REGEX.findall(source)