allow details tags

This commit is contained in:
Ben Lubar 2019-05-05 00:11:35 -05:00
parent e540f7b784
commit 73155f399b
No known key found for this signature in database
GPG Key ID: 92939677AB59EDA4
2 changed files with 4 additions and 2 deletions

View File

@ -2,10 +2,11 @@ from bleach.sanitizer import Cleaner, ALLOWED_TAGS
from bleach.linkifier import LinkifyFilter
from jinja2 import evalcontextfilter, Markup
TAGS = ['cite', 'code', 'p', 'pre', 'img', 'span']
TAGS = ['cite', 'code', 'details', 'p', 'pre', 'img', 'span', 'summary']
TAGS.extend(ALLOWED_TAGS)
ATTRIBUTES = {
'a': ('href', 'title', 'class'),
'details': ('open',),
'img': ('alt', 'src', 'title'),
'span': ('class',),
}

View File

@ -5,10 +5,11 @@ from django.utils.safestring import mark_safe
from bleach.sanitizer import Cleaner, ALLOWED_TAGS
from bleach.linkifier import LinkifyFilter
tags = ['cite', 'code', 'p', 'pre', 'img', 'span']
tags = ['cite', 'code', 'details', 'p', 'pre', 'img', 'span', 'summary']
tags.extend(ALLOWED_TAGS)
attributes = {
'a': ('href', 'title', 'class'),
'details': ('open',),
'img': ('alt', 'src', 'title'),
'span': ('class',),
}