aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2016-06-07 12:55:32 +1200
committerAldo Cortesi <aldo@nullcube.com>2016-06-07 12:55:32 +1200
commite037fe05ff1f0c2893b3f51e06e0261ca4245d63 (patch)
tree020454af687b48ddc58e0ce4442d78d91e0988ef /docs/conf.py
parent2b19a33738b20181d7b6ff10a9ffbf6c51ac96c2 (diff)
downloadmitmproxy-e037fe05ff1f0c2893b3f51e06e0261ca4245d63.tar.gz
mitmproxy-e037fe05ff1f0c2893b3f51e06e0261ca4245d63.tar.bz2
mitmproxy-e037fe05ff1f0c2893b3f51e06e0261ca4245d63.zip
Migrate pathod docs to Sphinx
All the content of the pathod docs are moved into Sphinx. The interactive format has not translated well to static docs, and there's still a lot of rewriting, format fixing, structuring, etc to be done.
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 01bcce1b..bd51c4c5 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -153,7 +153,7 @@ html_favicon = "favicon.ico"
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
-# html_static_path = ['_static']
+html_static_path = ['_static']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
@@ -216,4 +216,10 @@ html_favicon = "favicon.ico"
#html_search_scorer = 'scorer.js'
# Output file base name for HTML help builder.
-htmlhelp_basename = 'mitmproxydoc' \ No newline at end of file
+htmlhelp_basename = 'mitmproxydoc'
+
+html_context = {
+ 'css_files': [
+ '_static/theme_overrides.css', # overrides for wide tables in RTD theme
+ ],
+}