* Static Parse Method
(tokens: Token[], options?: MarkedOptions<ParserOutput, RendererOutput>)
| 24 | * Static Parse Method |
| 25 | */ |
| 26 | static parse<ParserOutput = string, RendererOutput = string>(tokens: Token[], options?: MarkedOptions<ParserOutput, RendererOutput>) { |
| 27 | const parser = new _Parser<ParserOutput, RendererOutput>(options); |
| 28 | return parser.parse(tokens); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Static Parse Inline Method |