The tidyNode class
An HTML node in an HTML file, as detected by tidy.
Intro
An HTML node in an HTML file, as detected by tidy.
Class synopsis
Properties
valueThe HTML representation of the node, including the surrounding tags.
nameThe name of the HTML node
typeThe type of the node (one of the nodetype constants, e.g.
TIDY_NODETYPE_PHP)lineThe line number at which the tags is located in the file
columnThe column number at which the tags is located in the file
proprietaryIndicates if the node is a proprietary tag
idThe ID of the node (one of the tag constants, e.g.
TIDY_TAG_FRAME)attributeAn array of string, representing the attributes names (as keys) of the current node.
childAn array of
tidyNode, representing the children of the current node.
Tidynode