mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
07ed1bbf8c
This fix is slightly hackish, as we simply treat comments as whitespace. This should largely be correct, and breaks no current test cases, although it could result in noncompliant behavior. Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
23 lines
509 B
PHP
23 lines
509 B
PHP
<?php
|
|
|
|
/**
|
|
* Concrete comment token class. Generally will be ignored.
|
|
*/
|
|
class HTMLPurifier_Token_Comment extends HTMLPurifier_Token
|
|
{
|
|
public $data; /**< Character data within comment. */
|
|
public $is_whitespace = true;
|
|
/**
|
|
* Transparent constructor.
|
|
*
|
|
* @param $data String comment data.
|
|
*/
|
|
public function __construct($data, $line = null, $col = null) {
|
|
$this->data = $data;
|
|
$this->line = $line;
|
|
$this->col = $col;
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|