(e)
| 934 | } |
| 935 | } |
| 936 | lheading(e) { |
| 937 | let t = this.rules.block.lheading.exec(e); |
| 938 | if (t) |
| 939 | return { |
| 940 | type: "heading", |
| 941 | raw: t[0], |
| 942 | depth: t[2].charAt(0) === "=" ? 1 : 2, |
| 943 | text: t[1], |
| 944 | tokens: this.lexer.inline(t[1]), |
| 945 | }; |
| 946 | } |
| 947 | paragraph(e) { |
| 948 | let t = this.rules.block.paragraph.exec(e); |
| 949 | if (t) { |