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 3eeab16 commit c0355f5Copy full SHA for c0355f5
.github/scripts/convert_to_html_tables.py
@@ -91,7 +91,10 @@ def main():
91
demo_path = details['demo-path']
92
if ' ' in demo_path:
93
demo_path = '%20'.join(demo_path.split())
94
- demo_path_output = f'<a href="{demo_path}" title="view the result of {title}">/{REPO_NAME}/{title}/</a>'
+ demo_path_output = f'<a href="{demo_path}" title="view the result of {title}">/{REPO_NAME}/{title}/</a>'
95
+ if title == 'root' or title == '{init}':
96
+ demo_path_output = f'<a href="{demo_path}" title="view the result of {title}">/{REPO_NAME}/</a>'
97
+
98
99
# Appending all data together
100
updated_lines.append('\t<tr align="center">\n')
@@ -116,4 +119,4 @@ def main():
116
119
117
120
118
121
if __name__ == '__main__':
- main()
122
+ main()
0 commit comments