0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-03-12 09:38:45 +00:00

16 lines
302 B
PHP

<?php
require_once 'HTMLPurifier/HTMLModule.php';
class HTMLPurifier_HTMLModule_XMLCommonAttributes extends HTMLPurifier_HTMLModule
{
var $name = 'XMLCommonAttributes';
var $attr_collections = array(
'Lang' => array(
'xml:lang' => 'LanguageCode',
)
);
}