diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-18 20:07:46 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-18 20:07:46 +0100 |
commit | adf17b677edeb2387671f6a0f12123e7497b5938 (patch) | |
tree | 8fd87d7bf5699488ffc12afa991011e80ac1011b /inc/3rdparty/htmlpurifier/HTMLPurifier/HTMLModule/Hypertext.php | |
parent | 894cd087f41d605f2f093aaad1300825f705e009 (diff) | |
download | wallabag-adf17b677edeb2387671f6a0f12123e7497b5938.tar.gz wallabag-adf17b677edeb2387671f6a0f12123e7497b5938.tar.zst wallabag-adf17b677edeb2387671f6a0f12123e7497b5938.zip |
remove 3rd libraries
Diffstat (limited to 'inc/3rdparty/htmlpurifier/HTMLPurifier/HTMLModule/Hypertext.php')
-rw-r--r-- | inc/3rdparty/htmlpurifier/HTMLPurifier/HTMLModule/Hypertext.php | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/inc/3rdparty/htmlpurifier/HTMLPurifier/HTMLModule/Hypertext.php b/inc/3rdparty/htmlpurifier/HTMLPurifier/HTMLModule/Hypertext.php deleted file mode 100644 index 968c07e9..00000000 --- a/inc/3rdparty/htmlpurifier/HTMLPurifier/HTMLModule/Hypertext.php +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | /** | ||
4 | * XHTML 1.1 Hypertext Module, defines hypertext links. Core Module. | ||
5 | */ | ||
6 | class HTMLPurifier_HTMLModule_Hypertext extends HTMLPurifier_HTMLModule | ||
7 | { | ||
8 | |||
9 | /** | ||
10 | * @type string | ||
11 | */ | ||
12 | public $name = 'Hypertext'; | ||
13 | |||
14 | /** | ||
15 | * @param HTMLPurifier_Config $config | ||
16 | */ | ||
17 | public function setup($config) | ||
18 | { | ||
19 | $a = $this->addElement( | ||
20 | 'a', | ||
21 | 'Inline', | ||
22 | 'Inline', | ||
23 | 'Common', | ||
24 | array( | ||
25 | // 'accesskey' => 'Character', | ||
26 | // 'charset' => 'Charset', | ||
27 | 'href' => 'URI', | ||
28 | // 'hreflang' => 'LanguageCode', | ||
29 | 'rel' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rel'), | ||
30 | 'rev' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rev'), | ||
31 | // 'tabindex' => 'Number', | ||
32 | // 'type' => 'ContentType', | ||
33 | ) | ||
34 | ); | ||
35 | $a->formatting = true; | ||
36 | $a->excludes = array('a' => true); | ||
37 | } | ||
38 | } | ||
39 | |||
40 | // vim: et sw=4 sts=4 | ||