forked from arogozhnikov/einops
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduce auto-generation of index for documentation
- Loading branch information
1 parent
fcd5fe5
commit 686dc1e
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
""" | ||
Converts readme from github repo page to mkdocs-friendly | ||
""" | ||
from pathlib import Path | ||
|
||
original_text = Path(__file__).parent.parent.joinpath('README.md').read_text(encoding='utf-8') | ||
|
||
|
||
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""" | ||
<video width="800" controls><source src="{line}" type="video/mp4"> | ||
Your browser does not support the video </video>\n\n<br />\n\n<br /> | ||
""".strip() | ||
else: | ||
# other lines are not touched | ||
return line | ||
|
||
|
||
new_content = '\n'.join([ | ||
replace_with_video_tag(line) | ||
for line in original_text.splitlines() | ||
]) | ||
# save contents | ||
docs_index = Path(__file__).parent.parent.joinpath('docs_src', 'index.md') | ||
assert docs_index.parent.exists() | ||
docs_index.write_bytes( | ||
new_content.encode('utf-8') | ||
) | ||
print('Converted README.md') |