在HTMLPurifier中使用自定义<oembed>标记

时间:2016-12-07 09:31:56

标签: html5 security htmlpurifier

我想在HTMLPurifier中使用和标记以及一些自定义标记(<oembed>)。我用了

组$ config-&gt;设置( 'HTML.Allowed', '透过oEmbed'); 添加这些标签,但它不起作用

我也试试这个

$ def = $ config-&gt; getHTMLDefinition(true); $ def-&gt; addAttribute('a','data-id','Number');

$def->addElement( 'oembed',  //name
                             'Inline', //content set
                             'Inline', //allowed children
                             'I18N', //attribute collection
                             array( 'src*' => 'URI',
                                    'height*' => 'Pixels',
                                    'width*' => 'Pixels')
                           );

我该怎么做?

0 个答案:

没有答案