2007-05-19 21:00:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'HTMLPurifier/HTMLModule/Tidy.php';
|
2007-05-20 02:12:01 +00:00
|
|
|
require_once 'HTMLPurifier/ChildDef/StrictBlockquote.php';
|
2007-05-19 21:00:12 +00:00
|
|
|
|
|
|
|
class HTMLPurifier_HTMLModule_Tidy_XHTMLStrict extends
|
|
|
|
HTMLPurifier_HTMLModule_Tidy
|
|
|
|
{
|
|
|
|
|
|
|
|
var $name = 'Tidy_XHTMLStrict';
|
|
|
|
var $defaultLevel = 'light';
|
|
|
|
|
|
|
|
function makeFixes() {
|
|
|
|
$r = array();
|
|
|
|
$r['blockquote#content_model_type'] = 'strictblockquote';
|
|
|
|
return $r;
|
|
|
|
}
|
|
|
|
|
|
|
|
var $defines_child_def = true;
|
|
|
|
function getChildDef($def) {
|
|
|
|
if ($def->content_model_type != 'strictblockquote') return false;
|
|
|
|
return new HTMLPurifier_ChildDef_StrictBlockquote($def->content_model);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|