[Bf-blender-cvs] [66a69fa2201] master: API Docs: Theme Options

Aaron Carlisle noreply at git.blender.org
Thu Jul 4 04:48:02 CEST 2019


Commit: 66a69fa220118992cb63769b68ea05b17fd919e3
Author: Aaron Carlisle
Date:   Wed Jul 3 22:46:52 2019 -0400
Branches: master
https://developer.blender.org/rB66a69fa220118992cb63769b68ea05b17fd919e3

API Docs: Theme Options

- Limit Nav depth to 1
- Turn off stick nav
- Add canonical_url

===================================================================

M	doc/python_api/sphinx_doc_gen.py

===================================================================

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")



More information about the Bf-blender-cvs mailing list