diff options
| author | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-09 02:56:01 +0300 |
|---|---|---|
| committer | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-09 02:56:01 +0300 |
| commit | c208dfe85d21361dfb2a7060957cb3ad0bc478e8 (patch) | |
| tree | 7c505570054bb3077e4af24c23cab1e8dadc9095 /man/lib | |
| parent | c2447c0837629117f03d7f2494f451f4585c8b89 (diff) | |
Fix links in html version of man section index
Diffstat (limited to 'man/lib')
| -rw-r--r-- | man/lib/mksectionindex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/lib/mksectionindex.py b/man/lib/mksectionindex.py index 480011fe..f9b3bf75 100644 --- a/man/lib/mksectionindex.py +++ b/man/lib/mksectionindex.py @@ -30,7 +30,7 @@ if __name__ == "__main__": """ for f in os.listdir(): - index_file += f"<a href=\"{prefix}{section}/{f}\">{f}</a>\n" + index_file += f"<a href=\"{prefix}{section}/{f}.html\">{f}</a>\n" index_file += "</pre></body></html>" print(index_file) |
