(e)
| 945 | }; |
| 946 | } |
| 947 | paragraph(e) { |
| 948 | let t = this.rules.block.paragraph.exec(e); |
| 949 | if (t) { |
| 950 | let n = |
| 951 | t[1].charAt(t[1].length - 1) === |
| 952 | ` |
| 953 | ` |
| 954 | ? t[1].slice(0, -1) |
| 955 | : t[1]; |
| 956 | return { |
| 957 | type: "paragraph", |
| 958 | raw: t[0], |
| 959 | text: n, |
| 960 | tokens: this.lexer.inline(n), |
| 961 | }; |
| 962 | } |
| 963 | } |
| 964 | text(e) { |
| 965 | let t = this.rules.block.text.exec(e); |
| 966 | if (t) |
no test coverage detected