mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
FIX: restrict classes allowed for img tag in Markdown
This commit is contained in:
parent
52b33b448d
commit
9cb088e3f6
|
@ -240,4 +240,6 @@ export function setup(helper) {
|
|||
state, (c,s)=>applyEmoji(c,s,md.options.discourse.emojiUnicodeReplacer))
|
||||
);
|
||||
});
|
||||
|
||||
helper.whiteList(['img[class=emoji]']);
|
||||
}
|
||||
|
|
|
@ -130,4 +130,6 @@ export function setup(helper) {
|
|||
helper.registerPlugin(md=>{
|
||||
md.block.bbcode.ruler.push('quotes', rule);
|
||||
});
|
||||
|
||||
helper.whiteList(['img[class=avatar]']);
|
||||
}
|
||||
|
|
|
@ -156,7 +156,6 @@ const DEFAULT_LIST = [
|
|||
'iframe[marginwidth]',
|
||||
'iframe[width]',
|
||||
'img[alt]',
|
||||
'img[class]',
|
||||
'img[height]',
|
||||
'img[title]',
|
||||
'img[width]',
|
||||
|
|
Loading…
Reference in New Issue
Block a user