A flash file can be embedded in a PDF document. Does anyone know if it is also possible to embed an HTML webpage?
Added:
Created a NPM module that allows you to add custom HTML and CSS to PDF's.
const pdf = require('add-html-to-pdf'); var options = { input: 'sample.pdf', output: 'done.pdf', html: "This is awesome!", useDocker: true } pdf.insertHTMLInPDF(options);