From 63b13dbe4e41855cf243605e9190229c4fa56da8 Mon Sep 17 00:00:00 2001 From: Joseph Lewis III Date: Tue, 29 Aug 2023 12:01:36 -0700 Subject: [PATCH] Fixed navigation rendering in CLI docs. (#1034) By default, Docsy truncates lists in the navbar to 50 entries. Kf's CLI uses significantly more. Bumped up the number here to ensure the whole things shows. --- docs/config.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/config.toml b/docs/config.toml index 8b3caaf36..9bc80c074 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -143,6 +143,8 @@ sidebar_menu_compact = false # Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled) sidebar_search_disable = false sidebar_menu_foldable = true +# Ensure all pages can fit in the sidebar -- especially important for Kf's CLI docs. +sidebar_menu_truncate = 10000 # Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events. # This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set.