We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc52b72 commit 7dfbadcCopy full SHA for 7dfbadc
.github/scripts/update_index_md.py
@@ -89,6 +89,8 @@ def main():
89
if ' ' in demo_path:
90
demo_path = '%20'.join(demo_path.split())
91
demo_path_output = f'[/{REPO_NAME}/{title}/]({demo_path} "view the result of {title}")'
92
+ if title == 'root' or title == '{init}':
93
+ demo_path_output = f'[/{REPO_NAME}/]({demo_path} "view the result of {title}")'
94
95
# Appending all data together
96
updated_lines.append(f'| {title} | {contributors_names_output} | {pull_requests_output} | {demo_path_output} |\n')
@@ -105,4 +107,4 @@ def main():
105
107
106
108
109
if __name__ == '__main__':
- main()
110
+ main()
0 commit comments