summaryrefslogtreecommitdiffstats
path: root/core/html.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/html.py')
-rw-r--r--core/html.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/html.py b/core/html.py
index fd41a50..5045b16 100644
--- a/core/html.py
+++ b/core/html.py
@@ -20,12 +20,13 @@ def sanitize_post(post_html: str) -> str:
Only allows a, br, p and span tags, and class attributes.
"""
cleaner = bleach.Cleaner(
- tags=["a", "br", "p", "span"],
+ tags=["br", "p"],
attributes={ # type:ignore
"a": allow_a,
"p": ["class"],
"span": ["class"],
},
filters=[LinkifyFilter],
+ strip=True,
)
return mark_safe(cleaner.clean(post_html))