Searched defs:TagNode (Results 1 – 1 of 1) sorted by relevance
84 struct TagNode : public HTMLNode { struct85 TagNode(HTMLTag Tag) : HTMLNode(NodeType::NODE_TAG), Tag(Tag) {} in TagNode() function86 TagNode(HTMLTag Tag, const Twine &Text) : TagNode(Tag) { in TagNode() argument90 HTMLTag Tag; // Name of HTML Tag (p, div, h1)91 std::vector<std::unique_ptr<HTMLNode>> Children; // List of child nodes93 Attributes; // List of key-value attributes for tag