如何使用喵喵/净化器添加HTML 5标签(如视频和源代码)?

时间:2019-04-05 10:51:29

标签: php laravel-5 htmlpurifier

我正在使用喵喵/净化器

在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,
    ],

0 个答案:

没有答案