From 66a69fa220118992cb63769b68ea05b17fd919e3 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Wed, 3 Jul 2019 22:46:52 -0400 Subject: API Docs: Theme Options - Limit Nav depth to 1 - Turn off stick nav - Add canonical_url --- doc/python_api/sphinx_doc_gen.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'doc') diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py index 1ea1da4e03f..cafdefefb20 100644 --- a/doc/python_api/sphinx_doc_gen.py +++ b/doc/python_api/sphinx_doc_gen.py @@ -1623,6 +1623,16 @@ def write_sphinx_conf_py(basepath): fw("html_title = 'Blender %s Python API'\n" % BLENDER_VERSION_DOTS) fw("html_theme = 'sphinx_rtd_theme'\n") + fw("html_theme_options = {\n") + fw(" 'canonical_url': 'https://docs.blender.org/api/current/',\n") + # fw(" 'analytics_id': '',\n") + # fw(" 'collapse_navigation': True,\n") + fw(" 'sticky_navigation': False,\n") + fw(" 'navigation_depth': 1,\n") + # fw(" 'includehidden': True,\n") + # fw(" 'titles_only': False\n") + fw(" }\n\n") + # not helpful since the source is generated, adds to upload size. fw("html_copy_source = False\n") fw("html_show_sphinx = False\n") -- cgit v1.2.3