Class TextNode

A node that represents a chunk of text. This node is not a tag.

Hierarchy (view full)

Constructors

Properties

name: "TextNode" = "TextNode"

The name of the node.

text: string

The text of the node.

Methods

  • Converts the node into a tree-like overview of all children.

    Parameters

    • indentWidth: number = 2

      The number of spaces to indent the output. Defaults to 2.

    Returns string

    The tree-like overview of all children.

  • Gets the children of the node tree.

    Parameters

    • indentWidth: number

      The number of spaces to indent the output.

    Returns string

    The children of the node tree.

  • Converts the node into a textual representation of the node as BBCode. A node should return the exact same string as the input to Parser.parse provided indented is false.

    Returns string

    The textual representation of the node as BBCode.

Generated using TypeDoc