Skip to content

Commit

Permalink
fix(build_docs): correct HTML link in index
Browse files Browse the repository at this point in the history
  • Loading branch information
TheManchineel committed Dec 12, 2024
1 parent d08c002 commit d495111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_docs_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def build_docs_and_index():
output_filename = path.parent / f"{path.stem}.html"
if output_filename.name == "index.html":
index_entries.write(
f'<li><a href="/{path.parent.name}/{output_filename.name}>{path.parent.name}</a></li>\n'
f'<li><a href="/{path.parent.name}/{output_filename.name}">{path.parent.name}</a></li>\n'
)
jobs.append(
Popen(
Expand Down

0 comments on commit d495111

Please sign in to comment.