()
| 270 | } |
| 271 | |
| 272 | function downloadPdf() { |
| 273 | const article = document.querySelector<HTMLElement>(".blog-content-box") |
| 274 | if (article) { |
| 275 | Print.print(article, { title: articleTitle }) |
| 276 | .then(() => console.log("Printing complete")) |
| 277 | .catch((error) => console.error("Printing failed:", error)) |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | function editMarkdown() { |
| 282 | const dom = document.querySelector(".blog-content-box") |