(e)
| 615 | } |
| 616 | } |
| 617 | hr(e) { |
| 618 | let t = this.rules.block.hr.exec(e); |
| 619 | if (t) |
| 620 | return { |
| 621 | type: "hr", |
| 622 | raw: A( |
| 623 | t[0], |
| 624 | ` |
| 625 | `, |
| 626 | ), |
| 627 | }; |
| 628 | } |
| 629 | blockquote(e) { |
| 630 | let t = this.rules.block.blockquote.exec(e); |
| 631 | if (t) { |
no test coverage detected