diff --git a/app/core/templatetags/core_tags.py b/app/core/templatetags/core_tags.py index 0b6b1755..32a652eb 100644 --- a/app/core/templatetags/core_tags.py +++ b/app/core/templatetags/core_tags.py @@ -81,4 +81,5 @@ def clean(text: str) -> SafeString: text = text.replace('"', "") text = text.replace("'", "") text = text.replace("`", "") + text = text.replace("\\", "") return SafeString(nh3.clean(text))