(opt: MarkedOptions<ParserOutput, RendererOutput>)
| 260 | } |
| 261 | |
| 262 | setOptions(opt: MarkedOptions<ParserOutput, RendererOutput>) { |
| 263 | this.defaults = { ...this.defaults, ...opt }; |
| 264 | return this; |
| 265 | } |
| 266 | |
| 267 | lexer(src: string, options?: MarkedOptions<ParserOutput, RendererOutput>) { |
| 268 | return _Lexer.lex(src, options ?? this.defaults); |
no outgoing calls
no test coverage detected