diff options
author | Andreas Jaeger <aj@suse.com> | 2020-05-20 21:56:41 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@suse.com> | 2020-05-20 21:56:41 +0200 |
commit | 9e457deba01eabccb63d101012b83961977e69c8 (patch) | |
tree | be73db32fbf8d4b7515059b08f7531c71bb9528d /api-ref | |
parent | 301a5c6bc99b20d74c9e06a6c5727afbd628f94c (diff) | |
download | nova-9e457deba01eabccb63d101012b83961977e69c8.tar.gz |
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.
Change-Id: Icd9d529dbe66626ac53a9fdca5bc6821998a0b7d
Diffstat (limited to 'api-ref')
-rw-r--r-- | api-ref/source/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api-ref/source/conf.py b/api-ref/source/conf.py index e17a59eb75..ddcca926e7 100644 --- a/api-ref/source/conf.py +++ b/api-ref/source/conf.py @@ -48,7 +48,7 @@ openstackdocs_bug_project = 'nova' openstackdocs_bug_tag = 'api-ref' # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = 'native' # -- Options for HTML output -------------------------------------------------- |