This is a small hack
that adds a page numbers at the bottom of the page. Using Puppeteer and a fixed height, the page will render at an A4
size via web and have a fixed footer.
await page.goto('https://bl.ocks.org/seripap/raw/81241195e182b62adc3c87c27258f85f/', {waitUntil: 'networkidle'});
await page.pdf({
path: 'hacks.pdf',
format: 'A4'
});
Hey!
use attribute footerTemplate with displayHeaderFooter for show pages originally using puppeteer API
https://github.com/puppeteer/puppeteer/blob/master/docs/api.md#pagepdfoptions
// footerTemplate HTML template for the print footer.
// Should be valid HTML markup with following CSS classes used to inject printing values into them:
// - date formatted print date
// - title document title
// - url document location
// - pageNumber current page number
// - totalPages total pages in the document