我正在使用喵喵/净化器
在HTML上添加了video [style | controls | width | height],source [src]。允许在config / Purifier中使用,但每次我使用clean()方法时,它仍会删除视频和源标签。
也许是因为它是html 5标签,但是如何在Purifier中允许这些标签?
这是我在config / Purifier上的默认设置
'default' => [
'HTML.Doctype' => 'HTML 4.01 Transitional',
'HTML.Allowed' => 'div,b,strong,i,em,u,a[href|title],ul,ol,li,p[style],br,span[style],img[width|height|alt|src],video[style|controls|width|height],source[src]',
'CSS.AllowedProperties' => 'font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align',
'AutoFormat.AutoParagraph' => true,
'AutoFormat.RemoveEmpty' => true,
],