From mboxrd@z Thu Jan 1 00:00:00 1970 From: John McNamara Subject: [PATCH 1/3] doc: set the default literal block format Date: Thu, 2 Jul 2015 14:50:51 +0100 Message-ID: <1435845053-17203-2-git-send-email-john.mcnamara@intel.com> References: <1435845053-17203-1-git-send-email-john.mcnamara@intel.com> To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 415861396 for ; Thu, 2 Jul 2015 15:51:03 +0200 (CEST) In-Reply-To: <1435845053-17203-1-git-send-email-john.mcnamara@intel.com> 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" Set the default literal block format for Sphinx docs to 'none' instead of the implicit default of 'python'. This means that default :: blocks won't have any highlighting applied. Explicit highlighting via the code-block:: directive is already available and in use in the docs. 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 e1edffd..b2290b4 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -38,6 +38,7 @@ from pygments.formatters.latex import LatexFormatter project = 'DPDK' html_show_copyright = False +highlight_language = 'none' version = subprocess.check_output(['make', '-sRrC', '../../', 'showversion']).decode('utf-8') release = version -- 1.8.1.4