()
| 132 | } |
| 133 | |
| 134 | function downloadPdf() { |
| 135 | const article = document.querySelector<HTMLElement>("article") |
| 136 | if (article) { |
| 137 | Print.print(article, { title: articleTitle }) |
| 138 | .then(() => console.log("Printing complete")) |
| 139 | .catch((error) => console.error("Printing failed:", error)) |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | function downloadWord() { |
| 144 | const dom = document.querySelector("article") |