Cheetah
|
Public Member Functions | |
__construct ($data, $is_whitespace, $line=null, $col=null) | |
toTokenPair () | |
Public Attributes | |
$name = '#PCDATA' | |
$data | |
$is_whitespace | |
![]() | |
$line | |
$col | |
$armor = array() | |
$dead = false | |
Concrete text token class.
Text tokens comprise of regular parsed character data (PCDATA) and raw character data (from the CDATA sections). Internally, their data is parsed with all entities expanded. Surprisingly, the text token does have a "tag name" called #PCDATA, which is how the DTD represents it in permissible child nodes.
Definition at line 19903 of file HTMLPurifier.standalone.php.
Constructor, accepts data and determines if it is whitespace.
string | $data | String parsed character data. |
int | $line | |
int | $col |
Definition at line 19932 of file HTMLPurifier.standalone.php.
HTMLPurifier_Node_Text::toTokenPair | ( | ) |
Returns a pair of start and end tokens, where the end token is null if it is not necessary. Does not include children. @type array
Reimplemented from HTMLPurifier_Node.
Definition at line 19940 of file HTMLPurifier.standalone.php.
HTMLPurifier_Node_Text::$data |
@type string Parsed character data of text.
Definition at line 19916 of file HTMLPurifier.standalone.php.
HTMLPurifier_Node_Text::$is_whitespace |
@type bool Bool indicating if node is whitespace.
Definition at line 19922 of file HTMLPurifier.standalone.php.
HTMLPurifier_Node_Text::$name = '#PCDATA' |
PCDATA tag name compatible with DTD, see HTMLPurifier_ChildDef_Custom for details. @type string
Definition at line 19911 of file HTMLPurifier.standalone.php.