mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 18:37:07 -05:00 
			
		
		
		
	In the supported sites page, sort the extractors in case insensitive
This commit is contained in:
		@@ -14,7 +14,7 @@ def main():
 | 
			
		||||
        template = tmplf.read()
 | 
			
		||||
 | 
			
		||||
    ie_htmls = []
 | 
			
		||||
    for ie in sorted(youtube_dl.gen_extractors(), key=lambda i: i.IE_NAME):
 | 
			
		||||
    for ie in sorted(youtube_dl.gen_extractors(), key=lambda i: i.IE_NAME.lower()):
 | 
			
		||||
        ie_html = '<b>{}</b>'.format(ie.IE_NAME)
 | 
			
		||||
        try:
 | 
			
		||||
            ie_html += ': {}'.format(ie.IE_DESC)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user