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.