]> git.wh0rd.org - tt-rss.git/blame - lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php
remove Archived articles from Uncategorized view
[tt-rss.git] / lib / htmlpurifier / library / HTMLPurifier / HTMLModule / Nofollow.php
CommitLineData
f4f0f80d
AD
1<?php
2
3/**
4 * Module adds the nofollow attribute transformation to a tags. It
5 * is enabled by HTML.Nofollow
6 */
7class HTMLPurifier_HTMLModule_Nofollow extends HTMLPurifier_HTMLModule
8{
9
10 public $name = 'Nofollow';
11
12 public function setup($config) {
13 $a = $this->addBlankElement('a');
14 $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow();
15 }
16
17}
18
19// vim: et sw=4 sts=4