askiiart-net/md2html.py

13 lines
409 B
Python
Raw Normal View History

2023-03-22 15:37:47 -05:00
import os
from glob import glob
2023-03-25 22:33:49 -05:00
os.chdir('/big-stuff/files/websites/personal-site/html')
2023-03-22 15:37:47 -05:00
md_files = glob('*.md')
md_files_no_ext = []
for item in md_files:
md_files_no_ext.append(item[:-3])
for item in md_files_no_ext:
2023-03-23 22:03:13 -05:00
os.system(f'pandoc -f markdown-smart --data-dir . --template template.html -t html -o {item}.html {item}.md --metadata title=\"$(grep -m 1 -oP \'(?<=^# ).*\' {item}.md | cat)\"')