From 4d1a70cf99755d509b153001ff319ec6c8fb0a18 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Thu, 26 Oct 2023 11:18:49 +0200 Subject: [PATCH] Do not intercept left/right keys in HTML docs This will be the default in upcoming versions of Sphinx, but let's proactively and explicitly set to False, instead of the current and implicit True. See: https://github.com/pydata/pydata-sphinx-theme/issues/1492 --- doc/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/conf.py b/doc/conf.py index 74c41b52ab6..23aed3aac46 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -231,6 +231,7 @@ # canonical_url="", repository_url="https://github.com/pydata/xarray", repository_branch="main", + navigation_with_keys=False, # pydata/pydata-sphinx-theme#1492 path_to_docs="doc", use_edit_page_button=True, use_repository_button=True,