* Parsing & Compiling
(options)
| 1025 | */ |
| 1026 | |
| 1027 | function Parser(options) { |
| 1028 | this.tokens = []; |
| 1029 | this.token = null; |
| 1030 | this.options = options || marked.defaults; |
| 1031 | this.options.renderer = this.options.renderer || new Renderer(); |
| 1032 | this.renderer = this.options.renderer; |
| 1033 | this.renderer.options = this.options; |
| 1034 | this.slugger = new HeadingSlugger(); |
| 1035 | } |
| 1036 | |
| 1037 | /** |
| 1038 | * Static Parse Method |
nothing calls this directly
no outgoing calls
no test coverage detected