mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Enable rendering of table in Notes markdown into reports (#4081)
* Enable rendering of table in Notes markdown into reports * fixed style problems
This commit is contained in:
parent
fb3440947d
commit
4f9d51b329
@ -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'
|
||||
],
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user