(e)
| 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] }; |
| 977 | } |
| 978 | tag(e) { |
| 979 | let t = this.rules.inline.tag.exec(e); |
| 980 | if (t) |
no outgoing calls
no test coverage detected