X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=devscripts%2Fmake_readme.py;fp=devscripts%2Fmake_readme.py;h=57ff0456e7c85e6c089974eca8b6f16b916fdaa5;hb=4bb028f48ecfcde1f4d2feafbc71fc8e346a7b99;hp=0000000000000000000000000000000000000000;hpb=fec89790b19d804eecb7318e5da64dbb1445c7f0;p=youtube-dl diff --git a/devscripts/make_readme.py b/devscripts/make_readme.py new file mode 100644 index 000000000..57ff0456e --- /dev/null +++ b/devscripts/make_readme.py @@ -0,0 +1,21 @@ +import sys +import re + +helptext = sys.stdin.read() + +f = open('README.md') +oldreadme = f.read() +f.close() + +header = oldreadme[:oldreadme.index('# OPTIONS')] +footer = oldreadme[oldreadme.index('# CONFIGURATION'):] + +options = helptext[helptext.index(' General Options:')+19:] +options = re.sub(r'^ (\w.+)$', r'## \1', options, flags=re.M) +options = '# OPTIONS\n' + options + '\n' + +f = open('README.md', 'w') +f.write(header) +f.write(options) +f.write(footer) +f.close() \ No newline at end of file