Abstract hast node.
This interface is supposed to be extended. If you can use Literal or Parent, you should. But for example in HTML, a Doctype is neither literal nor parent, but still a node.
Doctype
To register custom hast nodes, add them to RootContentMap and other places where relevant (such as ElementContentMap).
For a union of all registered hast nodes, see Nodes.
Optional
Info from the ecosystem.
Position of a node in a source document.
Nodes that are generated (not in the original source document) must not have a position.
Node type.
Abstract hast node.
This interface is supposed to be extended. If you can use Literal or Parent, you should. But for example in HTML, a
Doctypeis neither literal nor parent, but still a node.To register custom hast nodes, add them to RootContentMap and other places where relevant (such as ElementContentMap).
For a union of all registered hast nodes, see Nodes.