diff options
-rw-r--r-- | shared/core-utils/renderer/html.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shared/core-utils/renderer/html.ts b/shared/core-utils/renderer/html.ts index bbf8b3fbd..c9757be85 100644 --- a/shared/core-utils/renderer/html.ts +++ b/shared/core-utils/renderer/html.ts | |||
@@ -30,11 +30,13 @@ export function getCustomMarkupSanitizeOptions (additionalAllowedTags: string[] | |||
30 | allowedTags: [ | 30 | allowedTags: [ |
31 | ...base.allowedTags, | 31 | ...base.allowedTags, |
32 | ...additionalAllowedTags, | 32 | ...additionalAllowedTags, |
33 | 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' | 33 | 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'img' |
34 | ], | 34 | ], |
35 | allowedSchemes: base.allowedSchemes, | 35 | allowedSchemes: base.allowedSchemes, |
36 | allowedAttributes: { | 36 | allowedAttributes: { |
37 | ...base.allowedAttributes, | 37 | ...base.allowedAttributes, |
38 | |||
39 | 'img': [ 'src', 'alt' ], | ||
38 | '*': [ 'data-*', 'style' ] | 40 | '*': [ 'data-*', 'style' ] |
39 | } | 41 | } |
40 | } | 42 | } |