Split man and README (Fixes #2892)

This commit is contained in:
Philipp Hagemeister 2014-05-13 11:16:11 +02:00
parent 3ef79a974a
commit d19bb9c0aa
3 changed files with 21 additions and 6 deletions

View file

@ -15,7 +15,7 @@ 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 = re.sub(r'(?m)^ (\w.+)$', r'## \1', options)
options = '# OPTIONS\n' + options + '\n'
with io.open(README_FILE, 'w', encoding='utf-8') as f: