MCPcopy Create free account
hub / github.com/IAmUnbounded/devctx / extractTaskFromMarkdown

Function extractTaskFromMarkdown

devctx/src/core/parser.ts:592–596  ·  view source on GitHub ↗
(content: string)

Source from the content-addressed store, hash-verified

590}
591
592function extractTaskFromMarkdown(content: string): string {
593 // Get title from first heading
594 const titleMatch = content.match(/^#\s+(.+)$/m);
595 return titleMatch?.[1]?.trim() || "";
596}
597
598function extractIncompleteItems(content: string): string[] {
599 const items: string[] = [];

Callers 1

extractFromAntigravityFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected