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