]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/3rdparty/htmlpurifier/HTMLPurifier/HTMLModule/CommonAttributes.php
remove autoload section in composer.json
[github/wallabag/wallabag.git] / inc / 3rdparty / htmlpurifier / HTMLPurifier / HTMLModule / CommonAttributes.php
CommitLineData
d4949327
NL
1<?php\r
2\r
3class HTMLPurifier_HTMLModule_CommonAttributes extends HTMLPurifier_HTMLModule\r
4{\r
5 /**\r
6 * @type string\r
7 */\r
8 public $name = 'CommonAttributes';\r
9\r
10 /**\r
11 * @type array\r
12 */\r
13 public $attr_collections = array(\r
14 'Core' => array(\r
15 0 => array('Style'),\r
16 // 'xml:space' => false,\r
17 'class' => 'Class',\r
18 'id' => 'ID',\r
19 'title' => 'CDATA',\r
20 ),\r
21 'Lang' => array(),\r
22 'I18N' => array(\r
23 0 => array('Lang'), // proprietary, for xml:lang/lang\r
24 ),\r
25 'Common' => array(\r
26 0 => array('Core', 'I18N')\r
27 )\r
28 );\r
29}\r
30\r
31// vim: et sw=4 sts=4\r