From 5ea49c819c33883858a92a1586c0f0d87485fd23 Mon Sep 17 00:00:00 2001 From: Daniel Dourvaris Date: Thu, 16 Jul 2020 13:19:16 +0200 Subject: [PATCH] markdown: support summary/details tags to allow setting https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary --- rhodecode/lib/bleach_whitelist.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rhodecode/lib/bleach_whitelist.py b/rhodecode/lib/bleach_whitelist.py index eabefe91..e09b12e5 100644 --- a/rhodecode/lib/bleach_whitelist.py +++ b/rhodecode/lib/bleach_whitelist.py @@ -61,6 +61,8 @@ markdown_tags = [ "img", "a", "input", + "details", + "summary" ] markdown_attrs = {