From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP; 02 Jul 2015 06:51:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,393,1432623600"; d="scan'208";a="739270759" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 02 Jul 2015 06:50:59 -0700 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 t62DowqP018969; Thu, 2 Jul 2015 14:50:58 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t62Dow2T017545; Thu, 2 Jul 2015 14:50:58 +0100 Received: (from jmcnam2x@localhost) by sivswdev02.ir.intel.com with id t62Dowsm017541; Thu, 2 Jul 2015 14:50:58 +0100 From: John McNamara To: dev@dpdk.org Date: Thu, 2 Jul 2015 14:50:51 +0100 Message-Id: <1435845053-17203-2-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1435845053-17203-1-git-send-email-john.mcnamara@intel.com> References: <1435845053-17203-1-git-send-email-john.mcnamara@intel.com> Subject: [dpdk-dev] [PATCH 1/3] doc: set the default literal block format 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: Thu, 02 Jul 2015 13:51:03 -0000 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