Skip to content

Commit

Permalink
fix keywords (HTML version)
Browse files Browse the repository at this point in the history
  • Loading branch information
landam committed Nov 4, 2024
1 parent a1fc15e commit c2bdf4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion man/build_keywords.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def build_keywords(ext):
man_file_path = get_module_man_file_path(man_dir, value, addons_man_files)
if ext == "html":
keyword_line += (
f' <a href="{man_file_path}">{value.replace(".{ext}", "")}</a>,'
f' <a href="{man_file_path}">{value.replace(f".{ext}", "")}</a>,'
)
else:
keyword_line += f' [{value.rsplit(".", 1)[0]}]({man_file_path}),'
Expand Down

0 comments on commit c2bdf4d

Please sign in to comment.