~netlandish/django-wiki

d18d80026104d8a71df5871d129737a13789c73f — Benjamin Bach 5 years ago cccf6d5 + b0e72c1
Merge pull request #974 from atombrella/html_h_tags

Corrected permitted h-level tags.
1 files changed, 1 insertions(+), 1 deletions(-)

M src/wiki/conf/settings.py
M src/wiki/conf/settings.py => src/wiki/conf/settings.py +1 -1
@@ 84,7 84,7 @@ _default_tag_whitelists = bleach.ALLOWED_TAGS + [
    'dl',
    'dt',
    'dd',
] + ['h{}'.format(n) for n in range(8)]
] + ['h{}'.format(n) for n in range(1, 7)]


#: List of allowed tags in Markdown article contents.