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:
11
markdown.py
Normal file
11
markdown.py
Normal 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)
|
Reference in New Issue
Block a user