MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / fences

Method fences

web/marked.min.js:582–596  ·  view source on GitHub ↗
(e)

Source from the content-addressed store, hash-verified

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) {

Callers 1

blockTokensMethod · 0.80

Calls 1

rtFunction · 0.85

Tested by

no test coverage detected