(e)
| 580 | } |
| 581 | } |
| 582 | fences(e) { |
| 583 | let t = this.rules.block.fences.exec(e); |
| 584 | if (t) { |
| 585 | let n = t[0], |
| 586 | s = rt(n, t[3] || "", this.rules); |
| 587 | return { |
| 588 | type: "code", |
| 589 | raw: n, |
| 590 | lang: t[2] |
| 591 | ? t[2].trim().replace(this.rules.inline.anyPunctuation, "$1") |
| 592 | : t[2], |
| 593 | text: s, |
| 594 | }; |
| 595 | } |
| 596 | } |
| 597 | heading(e) { |
| 598 | let t = this.rules.block.heading.exec(e); |
| 599 | if (t) { |