/home/techb158/immovalet.com/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule
NameSizeModeActions
Tidy/-0755rm
Bdo.php10280644editdlrm
CommonAttributes.php6700644editdlrm
Edit.php14340644editdlrm
Forms.php58360644editdlrm
Hypertext.php9960644editdlrm
Iframe.php11770644editdlrm
Image.php13880644editdlrm
Legacy.php58550644editdlrm
List.php19090644editdlrm
Name.php6690644editdlrm
Nofollow.php5070644editdlrm
NonXMLCommonAttributes.php3540644editdlrm
Object.php15230644editdlrm
Presentation.php14150644editdlrm
Proprietary.php9950644editdlrm
Ruby.php10540644editdlrm
SafeEmbed.php10970644editdlrm
SafeObject.php19470644editdlrm
SafeScripting.php12630644editdlrm
Scripting.php23370644editdlrm
StyleAttribute.php7800644editdlrm
Tables.php23520644editdlrm
Target.php5990644editdlrm
TargetBlank.php5220644editdlrm
TargetNoopener.php5160644editdlrm
TargetNoreferrer.php5260644editdlrm
Text.php34350644editdlrm
Tidy.php73800644editdlrm
XMLCommonAttributes.php3520644editdlrm
Edit: /home/techb158/immovalet.com/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php (1434B)
'URI', // 'datetime' => 'Datetime', // not implemented ); $this->addElement('del', 'Inline', $contents, 'Common', $attr); $this->addElement('ins', 'Inline', $contents, 'Common', $attr); } // HTML 4.01 specifies that ins/del must not contain block // elements when used in an inline context, chameleon is // a complicated workaround to acheive this effect // Inline context ! Block context (exclamation mark is // separator, see getChildDef for parsing) /** * @type bool */ public $defines_child_def = true; /** * @param HTMLPurifier_ElementDef $def * @return HTMLPurifier_ChildDef_Chameleon */ public function getChildDef($def) { if ($def->content_model_type != 'chameleon') { return false; } $value = explode('!', $def->content_model); return new HTMLPurifier_ChildDef_Chameleon($value[0], $value[1]); } } // vim: et sw=4 sts=4