1
0
mirror of https://gitlab.com/MisterBiggs/Resume.git synced 2025-08-02 19:41:41 +00:00

Switched to markdown pandoc python workflow

This commit is contained in:
2019-06-13 15:41:09 -07:00
parent 3b6b466cf4
commit d22d6e8406
65 changed files with 333 additions and 10649 deletions

11
markdown.py Normal file
View File

@@ -0,0 +1,11 @@
with open("header.html", "r") as top, open("footer.html", "r") as bottom, open(
"resume.html", "r"
) as middle:
header = top.read()
content = middle.read()
footer = bottom.read()
with open("index.html", "w+") as index:
index.write(header)
index.write(content)
index.write(footer)