Is there an HTML filter like HTML Purifier that is HTML5 compliant?
plzsendtehcodez bounty
Recurring question, not sufficiently documented yet. None of the other HTML cleanup solutions for PHP has complete HTML5 support yet. HTMLPurifier is probably the best option still. But crafting an encompassing configuration for HTML5 support is not that easy. So the question is, what's a sensible way to do so?
HP can be configured to recognize new tags with:
// setup configurable HP instance
$config = HTMLPurifier_Config::createDefault();
$config->set('HTML.DefinitionID', 'html5 draft');
$config->set('HTML.DefinitionRev', 1);
$config->set('Cache.DefinitionImpl', null); // no caching
$def = $config->getHTMLDefinition(true);
// add a new tag
$form = $def->addElement(
'article', // name
'Block', // content set
'Flow', // allowed children
'Common', // attribute collection
array( // attributes
)
);
// add a new attribute
$def->addAttribute('a', 'contextmenu', "ID");
This is clearly a bit of work, since there are a lot of new HTML5 tags and attributes to be added. And new global attributes should be registered with each existing html4 tag (is there an easy way to do that?). So obviously there should be a useful format/array structure to feed that configuration including tag and context information (inline/block/empty/flow/..).
And of course not all new HTML5 tags are fit to be allowed unrestricted. HTMLPurifier is all about content filtering, and to not undermine that the dangerousness of tags and attributes should be taken into consideration. <canvas> for example might not be that big of a deal when it appears in user content, as it's useless at best without Javascript (which HP already filters out). But other tags and attributes might be undesirable; so a flexible configuration structure is imperative, so it's easy to enable/disable tags and their associated attributes.
Another subproblem here is to find a useable list of new HTML5 stuff to add:
- http://simon.html5.org/html-elements
- http://www.w3.org/TR/html5-diff/#new-elements
- http://www.w3.org/TR/html5-diff/#new-attributes
(And yes, I think we are all aware that HTML5 is still a draft. It's however as important to be aware of that it's in use already anyway.)
# mostly confused about how to extend existing tags:
$def->addAttribute('input', 'type', "...|...|...");
# or how to allow data-* attributes (if I actually wanted that):
$def->addAttribute("data-*", ...
I hope the third bounty +500 is enough to ignite some configuraton coding here, or make someone investigate how to approach this cleverly.