sanitizer config: add quote-inline span to allowlist

pull/36/head
Ariadne Conill 2022-12-25 02:48:52 +00:00
parent 1df2577b89
commit 0b48ae2c3c
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ class Sanitize
next true if /^(h|p|u|dt|e)-/.match?(e) # microformats classes
next true if /^(mention|hashtag)$/.match?(e) # semantic classes
next true if /^(ellipsis|invisible)$/.match?(e) # link formatting classes
next true if /^quote-inline$/.match?(e) # quote inline classes
end
node['class'] = class_list.join(' ')