mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
15 lines
257 B
PHP
15 lines
257 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Proprietary module that transforms deprecated elements into Strict
|
||
|
* HTML (see HTML 4.01 and XHTML 1.0) when possible.
|
||
|
*/
|
||
|
|
||
|
class HTMLPurifier_HTMLModule_TransformToStrict extends HTMLPurifier_HTMLModule
|
||
|
{
|
||
|
|
||
|
// unimplemented
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|