From nobody Thu Apr 2 16:38:12 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3FDA9C6FA8B for ; Thu, 22 Sep 2022 20:42:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230104AbiIVUmI (ORCPT ); Thu, 22 Sep 2022 16:42:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44216 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229978AbiIVUmC (ORCPT ); Thu, 22 Sep 2022 16:42:02 -0400 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7E2552BE01; Thu, 22 Sep 2022 13:42:01 -0700 (PDT) Received: from meer.lwn.net (unknown [IPv6:2601:281:8300:73::5f6]) by ms.lwn.net (Postfix) with ESMTPA id BBA087F8; Thu, 22 Sep 2022 20:42:00 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net BBA087F8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1663879321; bh=pjEqGsC3o1cCyVpcxwjXhbptLW8M3DxLII6MXHLKxx4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iWbxNZ1XAipsse42nS+MNazVPJlCC7b34fZWJxBpwzReFOUFFM4i1f5/7aQZNXkTq 6yXrURAPxiLLTti3nYhSEg3Nqxi3mycUcXKQuQzTgGYzfen4TgK4pyH85jkONumqIY wzXvv6Hy7pQFgLCAMxl3cWBDslrmUubZTt4ppSnDIhUGV2QdUCUceKm/9/U6y+Q26A +XeWD/x5RZnFc08kYTCbwBoZ6NrxUPgsxWlH4dBwnZCUL61I7JGrelXIYuY+tK+3Da Dmvezp+UkU4vLurABReZjxVMBiXkidy7jdOGApP8VXNbsxoBtuPZVmmmu/fSZl18Ac C9vRbxVkf/aCA== From: Jonathan Corbet To: linux-doc@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Thorsten Leemhuis , Kees Cook , Jani Nikula , Jonathan Corbet Subject: [PATCH v2 3/7] docs: reconfigure the HTML left column Date: Thu, 22 Sep 2022 14:41:34 -0600 Message-Id: <20220922204138.153146-4-corbet@lwn.net> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20220922204138.153146-1-corbet@lwn.net> References: <20220922204138.153146-1-corbet@lwn.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Use the html_sidebars directive to get a more useful set of links in the left column. Unfortunately, this is a no-op with the default RTD theme, but others observe it. Signed-off-by: Jonathan Corbet Reviewed-by: David Vernet --- Documentation/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/conf.py b/Documentation/conf.py index 78dd6d1e7b88..22c9d4df1967 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -370,7 +370,8 @@ html_static_path =3D ['sphinx-static'] html_use_smartypants =3D False =20 # Custom sidebar templates, maps document names to template names. -#html_sidebars =3D {} +# Note that the RTD theme ignores this +html_sidebars =3D { '**': ['searchbox.html', 'localtoc.html', 'sourcelink.= html']} =20 # Additional templates that should be rendered to pages, maps page names to # template names. --=20 2.37.2