Corrected permitted h-level tags. h0 and h7 don't exist.
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.