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/cover.py

17 lines
459 B
Python
Raw Normal View History

2017-03-27 09:17:49 +01:00
from jinja2 import Template
2017-03-29 18:26:54 +01:00
from md_pdf.consts import PROJECT_DIR
2017-03-28 21:31:42 +01:00
import os
2017-03-27 09:17:49 +01:00
2017-03-28 21:31:42 +01:00
COVER_TEMPLATE = os.path.join(PROJECT_DIR, 'assets', 'cover-template.html')
OUTPUT_COVER_FILE = os.path.join(PROJECT_DIR, 'assets', 'cover.html')
def render_cover(context={}):
with open(COVER_TEMPLATE) as f:
2017-03-27 09:17:49 +01:00
template = Template(f.read())
2017-03-28 21:31:42 +01:00
with open(OUTPUT_COVER_FILE, "w") as f:
2017-03-27 09:17:49 +01:00
cover = template.render(context)
f.write(cover)
return cover