wdpr
    Preparing search index...

    Inline rule interface

    interface InlineRule {
        name: string;
        startTokens: TokenType[];
        parse(ctx: ParseContext): RuleResult<Element>;
    }
    Index

    Properties

    Methods

    Properties

    name: string

    Rule name for debugging

    startTokens: TokenType[]

    Token types that can start this rule

    Methods