()
| 70 | } |
| 71 | |
| 72 | function downloadPdf() { |
| 73 | const article = document.querySelector<HTMLElement>(".article-box") |
| 74 | if (article) { |
| 75 | Print.print(article, { title: articleTitle }) |
| 76 | .then(() => console.log("Printing complete")) |
| 77 | .catch((error) => console.error("Printing failed:", error)) |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | function downloadWord() { |
| 82 | const dom = document.querySelector(".article-box") |