GumboNodeType

Enum denoting the type of node. This determines the type of the node.v union.

Values

ValueMeaning
GUMBO_NODE_DOCUMENT

Document node. v will be a GumboDocument.

GUMBO_NODE_ELEMENT

Element node. v will be a GumboElement.

GUMBO_NODE_TEXT

Text node. v will be a GumboText.

GUMBO_NODE_CDATA

CDATA node. v will be a GumboText.

GUMBO_NODE_COMMENT

Comment node. v. will be a GumboText, excluding comment delimiters.

GUMBO_NODE_WHITESPACE

Text node, where all contents is whitespace. v will be a GumboText.

Meta