Implement HTML.Nofollow for external links.
[htmlpurifier.git] / library / HTMLPurifier / HTMLModule / Nofollow.php
blob3aa6654a5cba9a5cdc4ab29a15d024ad2f1bed5c
1 <?php
3 /**
4 * Module adds the nofollow attribute transformation to a tags. It
5 * is enabled by HTML.Nofollow
6 */
7 class HTMLPurifier_HTMLModule_Nofollow extends HTMLPurifier_HTMLModule
10 public $name = 'Nofollow';
12 public function setup($config) {
13 $a = $this->addBlankElement('a');
14 $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow();
19 // vim: et sw=4 sts=4