Class BaseNodeAbstract

The abstract base class for all nodes.

Hierarchy (view full)

Constructors

Properties

name: string

The name 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.

  • Gets the heading of the node tree.

    Returns string

    The heading of the node tree.

  • Gets the textual representation of the node as BBCode. An alias for BaseNode.toString.

    Returns string

  • 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