diff --git a/scripts/convert_readme.py b/scripts/convert_readme.py index 31321fa5..7b528d25 100644 --- a/scripts/convert_readme.py +++ b/scripts/convert_readme.py @@ -9,10 +9,11 @@ def replace_with_video_tag(line: str): if line.startswith('https://') and line.endswith('.mp4') and ' ' not in line: # treating as link to mp4 file. - return f""" - \n\n
\n\n
- """.strip() + return "" + # return f""" + # \n\n
\n\n
+ # """.strip() else: # other lines are not touched return line