From mboxrd@z Thu Jan 1 00:00:00 1970 From: John McNamara Subject: [PATCH] doc: change sphinx theme to the read the docs theme Date: Tue, 20 Oct 2015 12:31:29 +0100 Message-ID: <1445340689-32625-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 5885A8E82 for ; Tue, 20 Oct 2015 13:31:33 +0200 (CEST) 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" Change the Sphinx default theme from "alabaster" to the ReadTheDocs theme. See for example: http://dpdk.readthedocs.org/en/latest/ This looks better for technical documentation and in particular it has a 80 char wide verbatim block rendering. Also turn off option for distracting Html mouseover permalinks. Signed-off-by: John McNamara --- doc/guides/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/guides/conf.py b/doc/guides/conf.py index b2290b4..8cfb7d3 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -37,6 +37,8 @@ from pygments.formatters.latex import LatexFormatter project = 'DPDK' +html_theme = "sphinx_rtd_theme" +html_add_permalinks = "" html_show_copyright = False highlight_language = 'none' -- 1.8.1.4