(e)
| 962 | } |
| 963 | } |
| 964 | text(e) { |
| 965 | let t = this.rules.block.text.exec(e); |
| 966 | if (t) |
| 967 | return { |
| 968 | type: "text", |
| 969 | raw: t[0], |
| 970 | text: t[0], |
| 971 | tokens: this.lexer.inline(t[0]), |
| 972 | }; |
| 973 | } |
| 974 | escape(e) { |
| 975 | let t = this.rules.inline.escape.exec(e); |
| 976 | if (t) return { type: "escape", raw: t[0], text: t[1] }; |
no test coverage detected