mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
2c955af135
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
20 lines
593 B
PHP
20 lines
593 B
PHP
<?php
|
|
|
|
class HTMLPurifier_HTMLModule_Tidy_Strict extends HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4
|
|
{
|
|
public $name = 'Tidy_Strict';
|
|
public $defaultLevel = 'light';
|
|
|
|
public function makeFixes() {
|
|
$r = parent::makeFixes();
|
|
$r['blockquote#content_model_type'] = 'strictblockquote';
|
|
return $r;
|
|
}
|
|
|
|
public $defines_child_def = true;
|
|
public function getChildDef($def) {
|
|
if ($def->content_model_type != 'strictblockquote') return parent::getChildDef($def);
|
|
return new HTMLPurifier_ChildDef_StrictBlockquote($def->content_model);
|
|
}
|
|
}
|