When creating a Dynamic PDF in node using html-pdf, the content became cut at the end of pages.
In html, added <div id="pageFooter"></div>
Code that used to create PDF is
pdf.create(finalstr, {
format: "A3",
"footer": {
"height": "10mm",
}
})
Is there any solution?
Is it possible to create PDF from HTML using PhantomJs?