From 9cf8aa77397a26fdf1cbea5c67d7a615f71d0922 Mon Sep 17 00:00:00 2001 From: Eduardo Schettino Date: Fri, 10 Aug 2018 21:55:37 +0800 Subject: [PATCH] quickstart: set conf.py pygments_style value to None Currently quickstart sets a value for `pygments_style`, this is not desirable because it overrides the theme's default `pygments_style`. It should be `None` so theme`s value is used by default. --- sphinx/templates/quickstart/conf.py_t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/templates/quickstart/conf.py_t b/sphinx/templates/quickstart/conf.py_t index 79c78ae93..6128c0235 100644 --- a/sphinx/templates/quickstart/conf.py_t +++ b/sphinx/templates/quickstart/conf.py_t @@ -78,7 +78,7 @@ language = {{ language | repr }} exclude_patterns = [{{ exclude_patterns }}] # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = None # -- Options for HTML output -------------------------------------------------