• How to use Wikichase.

  • What are Element and DOMNode?

    • It seems that Element is a subset of DOMNode (blu3mo).
    • There are different types of DOMNodes, such as Element and Text.
    • If you want to perform Element-specific operations in ts, you can specify Element using if (node instanceof Element) { }.
      • For example, attribs is only available on Element.