Move genMD.py to tools directory

This commit is contained in:
Mark Badolato 2014-11-24 15:26:29 -07:00
parent eb0bfded8b
commit 290c454570

8
tools/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`\n\n" % f)
mkdn.write("![image](%s)\n\n" % f)