PlanetEditor/grk/cw 6/render.py
sasankasa 009943d336 cw 6
2023-12-18 16:15:08 +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')