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

16 lines
269 B
PHP
Raw Normal View History

<?php
/**
* Validates arbitrary text according to the HTML spec.
*/
class HTMLPurifier_AttrDef_Text extends HTMLPurifier_AttrDef
{
public function validate($string, $config, $context) {
return $this->parseCDATA($string);
}
}
// vim: et sw=4 sts=4