I am trying to put together a pdf from html template code. The problem I am running into is that the html-pdf converters I have tried don't format the css properly, I guess they are not yet compatible with css flex-box.
I have looked at two approaches:
Using html-pdf package on Node.js
Using jinja2, pdfkit and wkhtmltopdf in python
Both approaches allow me to template the html and dynamically build a pdf from html but the css conversion does not 100% work (css flex-box fails).
Any ideas on html to pdf converters that can handle css flex-box? Or, does anyone know of any fixes for the approaches above so they can handle css flex-box? Just want to make a pdf from css flex-box styled html.
Thanks!