| 
									
										
										
										
											2014-11-26 20:01:20 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							| 
									
										
										
										
											2014-05-13 14:21:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import io | 
					
						
							| 
									
										
										
										
											2016-05-29 09:06:10 +06:00
										 |  |  | import optparse | 
					
						
							| 
									
										
										
										
											2014-05-13 14:21:21 +02:00
										 |  |  | import os.path | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | 
					
						
							|  |  |  | README_FILE = os.path.join(ROOT_DIR, 'README.md') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-29 09:06:10 +06:00
										 |  |  | PREFIX = '''%YOUTUBE-DL(1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # NAME | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | youtube\-dl \- download videos from youtube.com or other video platforms | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | **youtube-dl** \[OPTIONS\] URL [URL...] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  |     parser = optparse.OptionParser(usage='%prog OUTFILE.md') | 
					
						
							|  |  |  |     options, args = parser.parse_args() | 
					
						
							|  |  |  |     if len(args) != 1: | 
					
						
							|  |  |  |         parser.error('Expected an output filename') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     outfile, = args | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with io.open(README_FILE, encoding='utf-8') as f: | 
					
						
							|  |  |  |         readme = f.read() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     readme = re.sub(r'(?s)^.*?(?=# DESCRIPTION)', '', readme) | 
					
						
							|  |  |  |     readme = re.sub(r'\s+youtube-dl \[OPTIONS\] URL \[URL\.\.\.\]', '', readme) | 
					
						
							|  |  |  |     readme = PREFIX + readme | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     readme = filter_options(readme) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with io.open(outfile, 'w', encoding='utf-8') as outf: | 
					
						
							|  |  |  |         outf.write(readme) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-13 20:10:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | def filter_options(readme): | 
					
						
							|  |  |  |     ret = '' | 
					
						
							|  |  |  |     in_options = False | 
					
						
							|  |  |  |     for line in readme.split('\n'): | 
					
						
							|  |  |  |         if line.startswith('# '): | 
					
						
							|  |  |  |             if line[2:].startswith('OPTIONS'): | 
					
						
							|  |  |  |                 in_options = True | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 in_options = False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if in_options: | 
					
						
							|  |  |  |             if line.lstrip().startswith('-'): | 
					
						
							| 
									
										
										
										
											2016-08-09 22:24:58 +07:00
										 |  |  |                 split = re.split(r'\s{2,}', line.lstrip()) | 
					
						
							|  |  |  |                 # Description string may start with `-` as well. If there is | 
					
						
							|  |  |  |                 # only one piece then it's a description bit not an option. | 
					
						
							|  |  |  |                 if len(split) > 1: | 
					
						
							|  |  |  |                     option, description = split | 
					
						
							|  |  |  |                     split_option = option.split(' ') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if not split_option[-1].startswith('-'):  # metavar | 
					
						
							|  |  |  |                         option = ' '.join(split_option[:-1] + ['*%s*' % split_option[-1]]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     # Pandoc's definition_lists. See http://pandoc.org/README.html | 
					
						
							|  |  |  |                     # for more information. | 
					
						
							|  |  |  |                     ret += '\n%s\n:   %s\n' % (option, description) | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |             ret += line.lstrip() + '\n' | 
					
						
							| 
									
										
										
										
											2015-09-13 20:10:23 +08:00
										 |  |  |         else: | 
					
						
							|  |  |  |             ret += line + '\n' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-29 09:06:10 +06:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     main() |