Commit 4da1a143 authored by 0dminnimda's avatar 0dminnimda Committed by GitHub

Avoid reassignment to the `html_context` in docs/conf.py - fixes the look of the "tabs". (GH-4634)

parent 827e5188
......@@ -179,15 +179,14 @@ html_favicon = "_static/favicon.ico"
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# Overwriting css from extensions
html_context = {
# Overwriting css from extensions
'css_files': ['_static/css/tabs.css'],
# "dev version" warning banner
'development': 'a' in release or 'b' in release,
}
development = 'a' in release or 'b' in release
html_context = {'development': development}
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
#html_last_updated_fmt = '%b %d, %Y'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment