From 1ff616fe4f6ff0ff295eeeaa4a817851df750e51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20Sch=C3=BCtze?= Date: Tue, 24 Sep 2019 12:53:15 +0200 Subject: [PATCH] Allow and html tags. --- openslides/utils/validate.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openslides/utils/validate.py b/openslides/utils/validate.py index 1ef3f67e6..bbbae769d 100644 --- a/openslides/utils/validate.py +++ b/openslides/utils/validate.py @@ -9,6 +9,8 @@ allowed_tags = [ "span", "blockquote", # text layout "strike", + "del", + "ins", "strong", "u", "em",