I am going to limit HTMLPurifier to only accept some specific HTML tags.

list of valid tags:

  1. <a>
  2. <img>
  3. <i>
  4. <b>

I read Configuration Documentation and HTML Allowed Elements

but there is not a good description and example.

if you have worked with this and limited some tags in HTML Purifier please give me an example.

thanks in advance.

有帮助吗?

解决方案

well, thanks everyone

I found the answer:
There's some example code here http://htmlpurifier.org/live/INSTALL

and to allow some specific tags:

$config->set('HTML.Allowed', 'b,a[href],i,img[src|alt]');

alt is also needed, as it is a required attribute by W3C spec.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top