Files
Library/docs/welcome/run.py

10 lines
184 B
Python
Raw Normal View History

2026-01-09 23:05:52 -05:00
import os
files = os.listdir()
for f in files:
if f.endswith('.html'):
name = f.split('.')[0]
cmd = "html2md -i {0} -o {1}.md".format(f, name)
print(cmd)