Browse Source

fix: html sanitizer - whitelist start prop for ol tag

pull/1740/head
NGPixel 4 years ago
parent
commit
17f833509f
1 changed files with 1 additions and 1 deletions
  1. 2
      server/modules/rendering/html-security/renderer.js

2
server/modules/rendering/html-security/renderer.js

@ -27,7 +27,7 @@ module.exports = {
label: ['class', 'id', 'for'],
li: ['class', 'style'],
mark: ['class', 'style'],
ol: ['class', 'style'],
ol: ['class', 'style', 'start'],
p: ['class', 'style'],
path: ['d', 'style'],
pre: ['class', 'style'],

Loading…
Cancel
Save