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

Method paragraph

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

Source from the content-addressed store, hash-verified

945 };
946 }
947 paragraph(e) {
948 let t = this.rules.block.paragraph.exec(e);
949 if (t) {
950 let n =
951 t[1].charAt(t[1].length - 1) ===
952 `
953`
954 ? t[1].slice(0, -1)
955 : t[1];
956 return {
957 type: "paragraph",
958 raw: t[0],
959 text: n,
960 tokens: this.lexer.inline(n),
961 };
962 }
963 }
964 text(e) {
965 let t = this.rules.block.text.exec(e);
966 if (t)

Callers 2

blockTokensMethod · 0.80
parseMethod · 0.80

Calls 2

inlineMethod · 0.80
parseInlineMethod · 0.80

Tested by

no test coverage detected