MCPcopy
hub / github.com/markedjs/marked / parseInline

Method parseInline

src/Parser.ts:34–37  ·  view source on GitHub ↗

* Static Parse Inline Method

(tokens: Token[], options?: MarkedOptions<ParserOutput, RendererOutput>)

Source from the content-addressed store, hash-verified

32 * Static Parse Inline Method
33 */
34 static parseInline<ParserOutput = string, RendererOutput = string>(tokens: Token[], options?: MarkedOptions<ParserOutput, RendererOutput>) {
35 const parser = new _Parser<ParserOutput, RendererOutput>(options);
36 return parser.parseInline(tokens);
37 }
38
39 /**
40 * Parse Loop

Callers 14

marked.tsFile · 0.80
headingFunction · 0.80
rendererFunction · 0.80
Hooks.test.jsFile · 0.80
rendererFunction · 0.80
headingMethod · 0.80
paragraphMethod · 0.80
tablecellMethod · 0.80
strongMethod · 0.80
emMethod · 0.80
delMethod · 0.80
linkMethod · 0.80

Calls 10

textMethod · 0.45
htmlMethod · 0.45
linkMethod · 0.45
imageMethod · 0.45
checkboxMethod · 0.45
strongMethod · 0.45
emMethod · 0.45
codespanMethod · 0.45
brMethod · 0.45
delMethod · 0.45

Tested by 1

rendererFunction · 0.64