* Static Parse Inline Method
(tokens: Token[], options?: MarkedOptions<ParserOutput, RendererOutput>)
| 32 | * Static Parse Inline Method |
| 33 | */ |
| 34 | static parseInline<ParserOutput = string, RendererOutput = string>(tokens: Token[], options?: MarkedOptions<ParserOutput, RendererOutput>) { |
| 35 | const parser = new _Parser<ParserOutput, RendererOutput>(options); |
| 36 | return parser.parseInline(tokens); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Parse Loop |