From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga102.fm.intel.com with ESMTP; 01 Nov 2015 08:44:33 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,229,1444719600"; d="scan'208";a="676146304" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga003.jf.intel.com with ESMTP; 01 Nov 2015 08:44:31 -0800 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id tA1GiUqS015400; Sun, 1 Nov 2015 16:44:30 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id tA1GiUlg008542; Sun, 1 Nov 2015 16:44:30 GMT Received: (from jmcnam2@localhost) by sivswdev02.ir.intel.com with id tA1GiUbv008538; Sun, 1 Nov 2015 16:44:30 GMT From: John McNamara To: dev@dpdk.org Date: Sun, 1 Nov 2015 16:44:30 +0000 Message-Id: <1446396270-8505-1-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH] doc: turn off permalink symbols in sphinx html docs X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Nov 2015 16:44:33 -0000 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