From adb2e24423eaa046bcdd900b13ab0f147b221a76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Tue, 18 Nov 2014 12:52:53 +0100 Subject: [PATCH] Added thead and tbody to allowed tags on mdrender service --- taiga/mdrender/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga/mdrender/service.py b/taiga/mdrender/service.py index baba2349..9ab347f7 100644 --- a/taiga/mdrender/service.py +++ b/taiga/mdrender/service.py @@ -52,7 +52,7 @@ from .extensions.references import TaigaReferencesExtension # Bleach configuration -bleach.ALLOWED_TAGS += ["p", "table", "th", "tr", "td", "h1", "h2", "h3", +bleach.ALLOWED_TAGS += ["p", "table", "thead", "tbody", "th", "tr", "td", "h1", "h2", "h3", "div", "pre", "span", "hr", "dl", "dt", "dd", "sup", "img", "del", "br", "ins"]