()
| 284 | } |
| 285 | |
| 286 | function downloadMarkdown() { |
| 287 | const html = document.querySelector(".blog-content-box") |
| 288 | const markdown = turndownService.turndown(html) |
| 289 | saveMarkdown(markdown, articleTitle) |
| 290 | } |
| 291 | |
| 292 | function downloadHtml() { |
| 293 | const dom = document.querySelector(".blog-content-box") |
no test coverage detected