From 3aa131945bc244564dffe496bae213405136f02d Mon Sep 17 00:00:00 2001 From: "wu.shiming" Date: Fri, 20 Nov 2020 15:46:00 +0800 Subject: [PATCH] Fix pygments_style Change pygments_style to 'native' since old theme version always used 'native' and the theme now respects the setting and using 'sphinx' can lead to some strange rendering. more info : http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014971.html Change-Id: Ia6dafb44a140f8a5fd4f55682d9fb34967e7643c --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 0283472231..48a6651283 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -51,7 +51,7 @@ add_function_parentheses = True add_module_names = True # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = 'native' # -- Options for HTML output --------------------------------------------------