2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-13 07:10:49 +00:00
Comrad/docs/www/build.py
quadrismegistus 17846b33e2 readme
2020-09-21 10:52:09 +01:00

15 lines
515 B
Python
Executable File

#!/usr/bin/env python
import os
ROOT = os.path.dirname(__file__)
os.chdir(ROOT)
theme_fn=os.path.join(ROOT,'theme.html')
with open(theme_fn) as theme_f: theme=theme_f.read()
os.system('pandoc ../../README.md > content.html')
with open('content.html') as content_f,open('index.html','w') as of:
content = content_f.read() #.replace('\n * ','</li>\n<li>')
content=content.replace('&lt;','<').replace('&gt;','>')
total = theme.replace('[[CONTENT]]',content)
of.write(total)
os.remove('content.html')