Interface TwingTagHandler

Interface implemented by tag handlers.

interface TwingTagHandler {
    tag: string;
    initialize(parser: TwingParser, level: 2 | 3): TwingTokenParser;
}

Properties

Methods

Properties

tag: string

The tag handled by the tag handler.

Methods