[cleanup] Add keyword automatically to SearchIE descriptions

and some minor cleanup of docs
This commit is contained in:
pukkandan 2021-10-23 19:59:52 +05:30
parent ec11a9f4a2
commit 96565c7e55
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
14 changed files with 78 additions and 71 deletions

View file

@ -29,6 +29,9 @@ def main():
continue
if ie_desc is not None:
ie_md += ': {0}'.format(ie.IE_DESC)
search_key = getattr(ie, 'SEARCH_KEY', None)
if search_key is not None:
ie_md += f'; "{ie.SEARCH_KEY}:" prefix'
if not ie.working():
ie_md += ' (Currently broken)'
yield ie_md