From 1beb1efbc89713daf11f6cb6c982459964456369 Mon Sep 17 00:00:00 2001 From: "Konstantin Kirik (snegovick)" Date: Tue, 9 Dec 2025 10:50:14 +0300 Subject: Sort section sub-entries in section index html --- man/lib/mksectionindex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/lib/mksectionindex.py b/man/lib/mksectionindex.py index e1a84926..35c13b13 100644 --- a/man/lib/mksectionindex.py +++ b/man/lib/mksectionindex.py @@ -29,7 +29,7 @@ if __name__ == "__main__":
 """
 
-    for f in os.listdir():
+    for f in sorted(os.listdir()):
         if f == 'INDEX':
             continue
         index_file += f"{f}\n"
-- 
cgit v1.2.3