From 66438539f23cfb130e2b2d92360125d25c111e8e Mon Sep 17 00:00:00 2001 From: Richard Berger Date: Fri, 21 Aug 2020 19:47:46 -0400 Subject: [PATCH] Avoids HTML doc pages from becoming too large --- doc/utils/sphinx-config/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/utils/sphinx-config/conf.py b/doc/utils/sphinx-config/conf.py index 446eaeedac..cc7dc0741f 100644 --- a/doc/utils/sphinx-config/conf.py +++ b/doc/utils/sphinx-config/conf.py @@ -136,7 +136,9 @@ html_theme = 'lammps_theme' # further. For a list of options available for each theme, see the # documentation. html_theme_options = { - 'logo_only' : True + 'logo_only' : True, + 'navigation_depth': 3, + 'collapse_navigation': True } # Add any paths that contain custom themes here, relative to this directory.