(e)
| 562 | if (t && t[0].length > 0) return { type: "space", raw: t[0] }; |
| 563 | } |
| 564 | code(e) { |
| 565 | let t = this.rules.block.code.exec(e); |
| 566 | if (t) { |
| 567 | let n = t[0].replace(this.rules.other.codeRemoveIndent, ""); |
| 568 | return { |
| 569 | type: "code", |
| 570 | raw: t[0], |
| 571 | codeBlockStyle: "indented", |
| 572 | text: this.options.pedantic |
| 573 | ? n |
| 574 | : A( |
| 575 | n, |
| 576 | ` |
| 577 | `, |
| 578 | ), |
| 579 | }; |
| 580 | } |
| 581 | } |
| 582 | fences(e) { |
| 583 | let t = this.rules.block.fences.exec(e); |
| 584 | if (t) { |
no test coverage detected