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.
This commit is contained in:
Eduardo Schettino 2018-08-10 21:55:37 +08:00
parent c48a612485
commit 9cf8aa7739

View File

@ -78,7 +78,7 @@ language = {{ language | repr }}
exclude_patterns = [{{ exclude_patterns }}] exclude_patterns = [{{ exclude_patterns }}]
# The name of the Pygments (syntax highlighting) style to use. # The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx' pygments_style = None
# -- Options for HTML output ------------------------------------------------- # -- Options for HTML output -------------------------------------------------