File "HTML5.php"
Full Path: /home/spiraleeea/www/spirale/plugins-dist/safehtml/lib/xemlock/htmlpurifier-html5/library/HTMLPurifier/HTMLModule/Tidy/HTML5.php
File size: 1.24 KB
MIME-type: text/x-php
Charset: utf-8
<?php
class HTMLPurifier_HTMLModule_Tidy_HTML5 extends HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4
{
public $name = 'Tidy_HTML5';
/**
* This is the lenient level. If a tag or attribute is about to be removed
* because it isn't supported by the doctype, Tidy will step in and change
* into an alternative that is supported.
* @var string
*/
public $defaultLevel = 'light';
/**
* @return array
*/
public function makeFixes()
{
$fixes = parent::makeFixes();
// Remove transforms for valid HTML5 elements
unset(
$fixes['u'],
$fixes['s'],
$fixes['ol@type']
);
$fixes['acronym'] = new HTMLPurifier_TagTransform_Simple('abbr');
$fixes['font'] = new HTMLPurifier_TagTransform_Font2();
$fixes['big'] = new HTMLPurifier_TagTransform_Simple('span', 'font-size:larger;');
$fixes['strike'] = new HTMLPurifier_TagTransform_Simple('s');
$fixes['tt'] = new HTMLPurifier_TagTransform_Simple('code');
$fixes['iframe@frameborder'] = new HTMLPurifier_AttrTransform_HTML5_FrameBorder();
$fixes['table@height'] = new HTMLPurifier_AttrTransform_Length('height');
return $fixes;
}
}