| 3 | import { useMemo } from "react"; |
| 4 | |
| 5 | interface MarkdownPreviewProps { |
| 6 | content: string; |
| 7 | } |
| 8 | |
| 9 | // Simple markdown to HTML converter |
| 10 | function parseMarkdown(markdown: string): string { |
nothing calls this directly
no outgoing calls
no test coverage detected