mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
2c955af135
Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
15 lines
247 B
PHP
15 lines
247 B
PHP
<?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);
|
|
}
|
|
|
|
}
|
|
|