Node.Text() and Node.Lines() return the text and position information about block nodes, but only for the text part, somewhat like Node.textContent in the DOM API. Is is possible to get the "raw" information about block nodes, including their related markups? That would be something like Element.outerHTML in DOM. Thanks!
Node.Text()
andNode.Lines()
return the text and position information about block nodes, but only for the text part, somewhat likeNode.textContent
in the DOM API. Is is possible to get the "raw" information about block nodes, including their related markups? That would be something likeElement.outerHTML
in DOM. Thanks!