From d6bda0c106920526ddc1a2b1def9fd2fadb53f44 Mon Sep 17 00:00:00 2001 From: Julien Stephan Date: Wed, 19 Aug 2026 18:09:00 +0200 Subject: [PATCH] docs: sort packages in left nav menu case-insensitively Currently, the packages in the left nav menu are sorted case-sensitively, which differs from the "List of Supported Packages" page that sorts them case-insensitively. This produces two package lists in a different order. Fix this by forcing a case-insensitive sort on the left nav menu. Signed-off-by: Julien Stephan --- docs/_config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/_config.yml b/docs/_config.yml index 6afaf987..ed6a05cb 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -12,6 +12,10 @@ color_scheme: light search_enabled: true heading_anchors: true +# Sort the navigation menu case-insensitively so it matches the ordering of +# the "List of Supported Packages" page (e.g. aiohttp before MarkupSafe). +nav_sort: case_insensitive + # Callout styling: `{: .note }` blocks (comments) get a blue left bar, # `{: .warning }` blocks get a red left bar. callouts: