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

Method code

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

Source from the content-addressed store, hash-verified

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

Callers 2

blockTokensMethod · 0.80
parseMethod · 0.80

Calls 2

AFunction · 0.85
RFunction · 0.85

Tested by

no test coverage detected