add newlines to screenshot mkdwn

This commit is contained in:
Kevin Lee 2014-11-20 22:11:35 -08:00
parent 95a6ac234d
commit 2dc82525fb
2 changed files with 478 additions and 121 deletions

View file

@ -3,6 +3,6 @@ import os
with open('README.md', 'w') as mkdn:
mkdn.write("Screenshots\n===\n")
for f in [f for f in os.listdir('.') if os.path.isfile(f)]:
mkdn.write("`%s`" % f)
mkdn.write("![image](%s)\n" % f)
mkdn.write("`%s`\n\n" % f)
mkdn.write("![image](%s)\n\n" % f)