generator = new HTMLPurifier_Generator(); $this->definition = HTMLPurifier_Definition::instance(); } function execute($tokens) { $result = array(); foreach($tokens as $token) { if (!empty( $token->is_tag )) { // DEFINITION CALL if (!isset($this->definition->info[$token->name])) { // invalid tag, generate HTML and insert in $token = new HTMLPurifier_Token_Text( $this->generator->generateFromToken($token) ); } } elseif ($token->type == 'comment') { // strip comments continue; } elseif ($token->type == 'text') { } else { continue; } $result[] = $token; } return $result; } } ?>