* Static Lex Method
(src: string, options?: MarkedOptions<ParserOutput, RendererOutput>)
| 70 | * Static Lex Method |
| 71 | */ |
| 72 | static lex<ParserOutput = string, RendererOutput = string>(src: string, options?: MarkedOptions<ParserOutput, RendererOutput>) { |
| 73 | const lexer = new _Lexer<ParserOutput, RendererOutput>(options); |
| 74 | return lexer.lex(src); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Static Lex Inline Method |