We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7783539 commit b3f0a6fCopy full SHA for b3f0a6f
make-html.py
@@ -35,7 +35,7 @@ def main():
35
with open(markdownfile, 'r') as f1:
36
with open(htmlfile, 'w') as f2:
37
md = f1.read()
38
- md = md.replace('.md)', '.html)')
+ md = md.replace('.md', '.html')
39
html = mistune.markdown(md)
40
print(html, file=f2)
41
os.rename(os.path.join('html', 'README.html'),
0 commit comments