archive
/
md-pdf
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf/md_pdf/build/pdf.py

32 lines
548 B
Python

import pdfkit
pdf_options = {
"quiet": "",
"no-pdf-compression": "",
"margin-top": '0.6in',
"margin-bottom": '0.6in',
"margin-left": '0.4in',
"margin-right": '0.4in',
"header-html": "header.html",
"footer-html": "footer.html",
"footer-spacing": 5,
"header-spacing": 5,
"title": "Title thing",
"replace": [
]
}
def export_pdf(content):
return pdfkit.from_string(
content,
'out.pdf',
options=pdf_options,
css="style.css",
cover="cover.html"
)