()
| 353 | } |
| 354 | |
| 355 | async function parseMarkdown() { |
| 356 | const html = document.querySelector("#img-content") |
| 357 | const markdown = turndownService.turndown(html) |
| 358 | await saveMarkdownWithLocalImages(markdown, articleTitle) |
| 359 | } |
| 360 | |
| 361 | function onClose() { |
| 362 | setIsShow(false) |
nothing calls this directly
no test coverage detected