2014-11-27 04:01:20 +09:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-01-05 12:39:23 +09:00
|
|
|
import io
|
2012-12-07 22:45:16 +09:00
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
|
2012-12-08 05:40:06 +09:00
|
|
|
README_FILE = 'README.md'
|
2012-12-07 22:45:16 +09:00
|
|
|
helptext = sys.stdin.read()
|
|
|
|
|
2014-01-05 12:44:29 +09:00
|
|
|
if isinstance(helptext, bytes):
|
|
|
|
helptext = helptext.decode('utf-8')
|
|
|
|
|
2014-01-05 12:39:23 +09:00
|
|
|
with io.open(README_FILE, encoding='utf-8') as f:
|
2012-12-08 05:40:06 +09:00
|
|
|
oldreadme = f.read()
|
2012-12-07 22:45:16 +09:00
|
|
|
|
|
|
|
header = oldreadme[:oldreadme.index('# OPTIONS')]
|
|
|
|
footer = oldreadme[oldreadme.index('# CONFIGURATION'):]
|
|
|
|
|
2014-01-05 12:44:29 +09:00
|
|
|
options = helptext[helptext.index(' General Options:') + 19:]
|
2014-05-13 18:16:11 +09:00
|
|
|
options = re.sub(r'(?m)^ (\w.+)$', r'## \1', options)
|
2012-12-07 22:45:16 +09:00
|
|
|
options = '# OPTIONS\n' + options + '\n'
|
|
|
|
|
2014-01-05 12:39:23 +09:00
|
|
|
with io.open(README_FILE, 'w', encoding='utf-8') as f:
|
2012-12-08 05:40:06 +09:00
|
|
|
f.write(header)
|
|
|
|
f.write(options)
|
|
|
|
f.write(footer)
|