diff --git a/assets/js/script.js b/assets/js/script.js index e8e111e..b53232d 100644 --- a/assets/js/script.js +++ b/assets/js/script.js @@ -127,4 +127,23 @@ $(this).removeClass('active') }) + + // Download page to pdf format + window.onload = function() { + document.getElementById("generatePDF") + .addEventListener("click", () => { + const content = this.document.getElementById("content"); + console.log(content); + console.log(window); + var opt = { + margin: 1, + filename: document.querySelector('#title').innerHTML, + image: { type: 'jpeg', quality: 0.98 }, + html2canvas: { scale: 2 }, + jsPDF: { unit: 'in', format: 'letter', orientation: 'portrait' } + }; + html2pdf().from(content).set(opt).save(); + }) + } + })(jQuery); \ No newline at end of file diff --git a/layouts/partials/default.html b/layouts/partials/default.html index 8bd157c..7614269 100644 --- a/layouts/partials/default.html +++ b/layouts/partials/default.html @@ -13,9 +13,11 @@ {{ end }} {{ end }} {{ if .Content }} -