From mboxrd@z Thu Jan 1 00:00:00 1970 From: John McNamara Subject: [PATCH] doc: turn off permalink symbols in sphinx html docs Date: Sun, 1 Nov 2015 16:44:30 +0000 Message-ID: <1446396270-8505-1-git-send-email-john.mcnamara@intel.com> To: dev@dpdk.org Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 8B329B62 for ; Sun, 1 Nov 2015 17:44:33 +0100 (CET) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Turn off the permalink symbol in the Sphinx generated html docs. This is a distracting mouseover when reading the docs and links to sections can still be obtained from the doc index. Signed-off-by: John McNamara --- doc/guides/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/conf.py b/doc/guides/conf.py index b2290b4..84ae577 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -37,6 +37,7 @@ from pygments.formatters.latex import LatexFormatter project = 'DPDK' +html_add_permalinks = "" html_show_copyright = False highlight_language = 'none' -- 1.8.1.4