Use modern configuration for django-markdownify (#3286)

- Required to suppress some configuration warning messages
This commit is contained in:
Oliver 2022-07-04 07:45:36 +10:00 committed by GitHub
parent 830ecd5677
commit 1ed49dcb2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -875,7 +875,15 @@ REMOTE_LOGIN_HEADER = get_setting('INVENTREE_REMOTE_LOGIN_HEADER', CONFIG.get('r
# Markdownify configuration
# Ref: https://django-markdownify.readthedocs.io/en/latest/settings.html
MARKDOWNIFY_WHITELIST_TAGS = [
MARKDOWNIFY = {
'default': {
'BLEACH': True,
'WHITELIST_ATTRS': [
'href',
'src',
'alt',
],
'WHITELIST_TAGS': [
'a',
'abbr',
'b',
@ -889,15 +897,9 @@ MARKDOWNIFY_WHITELIST_TAGS = [
'p',
'strong',
'ul'
]
MARKDOWNIFY_WHITELIST_ATTRS = [
'href',
'src',
'alt',
]
MARKDOWNIFY_BLEACH = False
],
}
}
# Error reporting
SENTRY_ENABLED = get_setting('INVENTREE_SENTRY_ENABLED', CONFIG.get('sentry_enabled', False))