Interface StateCore

Source
Expand description

Mutable state passed through the core rules chain.


interface StateCore {
    src: string;
    env: Env;
    tokens: Token[];
    inlineMode: boolean;
    md: MarkdownIt;
    Token: typeof Token;
}

Properties§

§src: string
§env: Env
§tokens: Token[] = []
§inlineMode: boolean = false
§md: MarkdownIt
§Token: typeof Token = Token