Files
NetMesh/components/ai-elements/hasMarkdownCodeFence.ts

7 lines
220 B
TypeScript
Raw Permalink Normal View History

const FENCE_RE = /(?:^|\n)\s{0,3}(`{3,}|~{3,})/;
/** True when markdown contains a fenced code block that may want Shiki. */
export function hasMarkdownCodeFence(text: string): boolean {
return FENCE_RE.test(text);
}