From aba8adabcccd634f7e168e0d0279b70176e0070b Mon Sep 17 00:00:00 2001 From: Martin Date: Thu, 29 Feb 2024 12:17:41 +0100 Subject: [PATCH] btrfs-progs: docs/conf.py: enable navigation_with_keys on RTD Feature from https://github.com/sphinx-doc/sphinx/pull/2064 enable navigation to be able to navigate documentation using the arrow keys. Pull-request: #754 Author: Martin Signed-off-by: David Sterba --- Documentation/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Documentation/conf.py b/Documentation/conf.py index 25896f5f..7d909165 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -37,6 +37,10 @@ exclude_patterns = ['_build'] # a list of builtin themes. html_theme = 'sphinx_rtd_theme' +html_theme_options = { + 'navigation_with_keys': True +} + # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css".