4 * Module adds the target=blank attribute transformation to a tags. It
5 * is enabled by HTML.TargetBlank
7 class HTMLPurifier_HTMLModule_TargetBlank
extends HTMLPurifier_HTMLModule
12 public $name = 'TargetBlank';
15 * @param HTMLPurifier_Config $config
17 public function setup($config)
19 $a = $this->addBlankElement('a');
20 $a->attr_transform_post
[] = new HTMLPurifier_AttrTransform_TargetBlank();