Skip to content

Commit

Permalink
Update gen_overview.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mprinkezs authored Jul 15, 2024
1 parent 937a625 commit 920ce97
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/scripts/gen_overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,6 @@ def gen_boilerplate(_category, _tag_index):
app_overview += \
"""
<style>
.link-target {
color: #000000;
}
.example-block-odd {
background-color: #f3f6f6;
}
Expand Down Expand Up @@ -278,7 +275,7 @@ def gen_boilerplate(_category, _tag_index):

for app in sorted(tagIndex[tag]):
if sphinx_doc:
app_overview += f"* <a href=\"#{app}\">{app}</a>\n"
app_overview += f"* <a href=\"#{app.lower()}\">{app}</a>\n"
else:
app_overview += f"* [{app}](#{app})\n"
app_overview += "\n"
Expand Down

0 comments on commit 920ce97

Please sign in to comment.