(content: string)
| 40 | |
| 41 | // Helper functions using marked for parsing and validation |
| 42 | const parseMarkdown = (content: string) => marked.lexer(content); |
| 43 | |
| 44 | const findMarkdownComments = (content: string): string[] => { |
| 45 | const tokens = parseMarkdown(content); |
no outgoing calls
no test coverage detected