mirror of
https://gitlab.com/redline-racing-division/car-show.git
synced 2025-06-16 15:17:18 +00:00
12 lines
328 B
Python
12 lines
328 B
Python
import pypandoc
|
|
|
|
middle = pypandoc.convert_file("body.md", "html")
|
|
|
|
with open("top.html", "r") as top:
|
|
with open("bottom.html", "r") as bottom:
|
|
with open("index.html", "w") as index:
|
|
index.write(top.read())
|
|
index.write(middle)
|
|
index.write(bottom.read())
|
|
index.close()
|