domhandler
    Preparing search index...

    Class CDATA

    CDATA nodes.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    children: ChildNode[]
    endIndex: number | null = null

    The end index of the node. Requires withEndIndices on the handler to be `true.

    next: ChildNode | null = null

    Next sibling

    parent: ParentNode | null = null

    Parent of the node

    prev: ChildNode | null = null

    Previous sibling

    sourceCodeLocation?: SourceCodeLocation | null

    parse5 source code location info.

    Available if parsing with parse5 and location info is enabled.

    startIndex: number | null = null

    The start index of the node. Requires withStartIndices on the handler to be `true.

    type: CDATA = ElementType.CDATA

    The type of the node.

    Accessors

    Methods

    • Clone this node, and optionally its children.

      Type Parameters

      Parameters

      • this: T
      • recursive: boolean = false

        Clone child nodes as well.

      Returns T

      A clone of the node.