MWS_2021/Treść zadań/render.py

7 lines
210 B
Python
Raw Normal View History

2021-05-28 23:21:02 +02:00
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')