@argdown/core
    Preparing search index...

    Interface ITokenNode

    Represents a matched Argdown token in the abstract syntax tree produced by the [[ParserPlugin]].

    interface ITokenNode {
        data?: any;
        ranges?: IRange[];
        tag?: string;
        text?: string;
        title?: string;
        trailingWhitespace?: string;
        url?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data?: any
    ranges?: IRange[]
    tag?: string
    text?: string
    title?: string
    trailingWhitespace?: string
    url?: string