diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-24 09:35:52 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-24 09:35:52 -0400 |
commit | e616185884ccade437bff4d75cc1c22958504878 (patch) | |
tree | 9d561235416fbf54ad725bd167a344a988ed60b7 /doc/conf.py | |
parent | c72eff754646c1a8a54dcf810523b34b0c85ec43 (diff) | |
download | python-coveragepy-git-e616185884ccade437bff4d75cc1c22958504878.tar.gz |
Make the Sphinx HTML output look like the eventual HTML.
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/conf.py b/doc/conf.py index 98bc93f1..64e145bd 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -91,17 +91,19 @@ pygments_style = 'sphinx' # -- Options for HTML output ---------------------------------------------------
-html_translator_class = "px_xlator.PxTranslator"
+#html_translator_class = "px_xlator.PxTranslator"
# The theme to use for HTML and HTML Help pages. Major themes that come with
# Sphinx are currently 'default' and 'sphinxdoc'.
-html_theme = 'px'
+html_theme = 'default'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}
+html_style = "neds.css"
+
html_add_permalinks = False
# Add any paths that contain custom themes here, relative to this directory.
@@ -161,7 +163,7 @@ html_show_sourcelink = False #html_use_opensearch = ''
# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
-html_file_suffix = '.px'
+#html_file_suffix = '.px'
# Output file base name for HTML help builder.
htmlhelp_basename = 'coveragepydoc'
|