Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to have htmlpurifier use the html5 doctype?

The documentation here states that you can change the doctype and encoding with the following:

<?php
    require_once '/path/to/htmlpurifier/library/HTMLPurifier.auto.php';

    $config = HTMLPurifier_Config::createDefault();
    $config->set('Core', 'Encoding', 'ISO-8859-1'); // replace with your encoding
    $config->set('HTML', 'Doctype', 'HTML 4.01 Transitional'); // replace with your doctype
    $purifier = new HTMLPurifier($config);

    $clean_html = $purifier->purify($dirty_html);
?>

but then in the install instructions here states that the supported doctypes are:

256 Other supported doctypes include:
257
258     * HTML 4.01 Strict
259     * HTML 4.01 Transitional
260     * XHTML 1.0 Strict
261     * XHTML 1.0 Transitional
262     * XHTML 1.1

Is it possible to do the following to allow html5 doctype?

<?php
        require_once '/path/to/htmlpurifier/library/HTMLPurifier.auto.php';

        $config = HTMLPurifier_Config::createDefault();
        $config->set('Core', 'Encoding', 'UTF-8'); // replace with your encoding
        $config->set('HTML', 'Doctype', 'html5'); // replace with your doctype
        $purifier = new HTMLPurifier($config);

        $clean_html = $purifier->purify($dirty_html);
    ?>

Or is there another way?

share|improve this question

3 Answers

up vote 9 down vote accepted

No, HTML Purifier does not currently support HTML 5.

share|improve this answer
Are you planning to add support for HTML 5? – thirtydot Dec 31 '10 at 0:27
4  
Yes, but in the sense of "Uh, you will have to wait indefinitely long until I get around to doing it." – Edward Z. Yang Dec 31 '10 at 9:09
1  
I saw this post htmlpurifier.org/phorum/read.php?2,6169,6169 which is dated Feb 1, 2012 which says HTML5 is still not supported. It's now Nov, 2012. I was hoping if support for html5 has been added recently? – stormwild Nov 24 '12 at 6:44
Nope, two years later, and no progress has been made. – Edward Z. Yang Nov 25 '12 at 23:59

Is this still true? This page seems to imply this information is outdated...

share|improve this answer

I don't think it supports Html5 yet. Maybe suggest it to them or create a patch for it if you really need it..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.