* Parsing & Compiling
(options)
| 760 | */ |
| 761 | |
| 762 | function Parser(options) { |
| 763 | this.tokens = []; |
| 764 | this.token = null; |
| 765 | this.options = options || marked.defaults; |
| 766 | } |
| 767 | |
| 768 | /** |
| 769 | * Static Parse Method |
nothing calls this directly
no outgoing calls
no test coverage detected