MCPcopy Create free account
hub / github.com/angular/examples / maybeStripMarkdown

Function maybeStripMarkdown

genkit-angular-starter-kit/src/flows.ts:105–111  ·  view source on GitHub ↗
(withMarkdown: string)

Source from the content-addressed store, hash-verified

103
104const markdownRegex = /^\s*(```json)?((.|\n)*?)(```)?\s*$/i;
105function maybeStripMarkdown(withMarkdown: string) {
106 const mdMatch = markdownRegex.exec(withMarkdown);
107 if (!mdMatch) {
108 return withMarkdown;
109 }
110 return mdMatch[2];
111}

Callers 1

flows.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected