X-Git-Url: https://jfr.im/git/yt-dlp.git/blobdiff_plain/49f2bf76a8e5e063a4053619dfb3153fe1c047dc..cc52de43568d8cd58c7e2ef4e5cecf609da28a9c:/devscripts/make_readme.py diff --git a/devscripts/make_readme.py b/devscripts/make_readme.py index cae1fa4f2..3f56af744 100755 --- a/devscripts/make_readme.py +++ b/devscripts/make_readme.py @@ -1,3 +1,10 @@ +#!/usr/bin/env python3 + +# yt-dlp --help | make_readme.py +# This must be run in a console of correct width + +from __future__ import unicode_literals + import io import sys import re @@ -11,12 +18,12 @@ with io.open(README_FILE, encoding='utf-8') as f: oldreadme = f.read() -header = oldreadme[:oldreadme.index('# OPTIONS')] +header = oldreadme[:oldreadme.index('## General 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' +options = helptext[helptext.index(' General Options:'):] +options = re.sub(r'(?m)^ (\w.+)$', r'## \1', options) +options = options + '\n' with io.open(README_FILE, 'w', encoding='utf-8') as f: f.write(header)