GRK-2023/render.py
Aleksander Burkowski f52499db19 Init
2023-01-15 19:33:53 +01:00

7 lines
214 B
Python

import os
rootdir = './'
for filename in os.listdir(rootdir):
if filename.endswith(".md"):
name = filename[:-3]
os.system(f'pandoc -s -o "{name}.html" "{name}.md" --mathjax --css style.css')