diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py index 72f81f9601..3aed39682c 100644 --- a/InvenTree/InvenTree/settings.py +++ b/InvenTree/InvenTree/settings.py @@ -789,6 +789,9 @@ MARKDOWNIFY = { 'src', 'alt', ], + 'MARKDOWN_EXTENSIONS': [ + 'markdown.extensions.extra' + ], 'WHITELIST_TAGS': [ 'a', 'abbr', @@ -802,7 +805,13 @@ MARKDOWNIFY = { 'ol', 'p', 'strong', - 'ul' + 'ul', + 'table', + 'thead', + 'tbody', + 'th', + 'tr', + 'td' ], } }