add prepare_manpage
This commit is contained in:
		
							parent
							
								
									d7e7dedbde
								
							
						
					
					
						commit
						1800eeefed
					
				
					 1 changed files with 20 additions and 0 deletions
				
			
		
							
								
								
									
										20
									
								
								devscripts/prepare_manpage.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								devscripts/prepare_manpage.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,20 @@
 | 
			
		|||
 | 
			
		||||
import io
 | 
			
		||||
import os.path
 | 
			
		||||
import sys
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
 | 
			
		||||
README_FILE = os.path.join(ROOT_DIR, 'README.md')
 | 
			
		||||
 | 
			
		||||
with io.open(README_FILE, encoding='utf-8') as f:
 | 
			
		||||
    readme = f.read()
 | 
			
		||||
 | 
			
		||||
PREFIX = '%YOUTUBE-DL(1)\n\n# NAME\n'
 | 
			
		||||
readme = re.sub(r'(?s)# INSTALLATION.*?(?=# DESCRIPTION)', '', readme)
 | 
			
		||||
readme = PREFIX + readme
 | 
			
		||||
 | 
			
		||||
if sys.version_info < (3, 0):
 | 
			
		||||
    print(readme.encode('utf-8'))
 | 
			
		||||
else:
 | 
			
		||||
    print(readme)
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue