MDL-83424 core: Restructure Moodle codebase

This commit is contained in:
Andrew Nicols
2025-07-12 17:51:38 +08:00
parent 9addea9f0a
commit f747c15cbf
28970 changed files with 0 additions and 0 deletions
@@ -0,0 +1,26 @@
<?php
class HTMLPurifier_HTMLModule_Tidy_XHTML extends HTMLPurifier_HTMLModule_Tidy
{
/**
* @type string
*/
public $name = 'Tidy_XHTML';
/**
* @type string
*/
public $defaultLevel = 'medium';
/**
* @return array
*/
public function makeFixes()
{
$r = array();
$r['@lang'] = new HTMLPurifier_AttrTransform_Lang();
return $r;
}
}
// vim: et sw=4 sts=4