add markdown for easy screenshot viewing

This commit is contained in:
Kevin Lee 2014-11-20 22:05:59 -08:00
parent 4c481251f9
commit 95a6ac234d
2 changed files with 129 additions and 0 deletions

8
screenshots/genMD.py Normal file
View file

@ -0,0 +1,8 @@
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)