From 7266d8e32a10dbe08f10d3aa27fe0eb8f07c074c Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Thu, 18 Feb 2021 23:55:23 -0500 Subject: PyAPI Docs: Fix deprecation warning with new theme version --- doc/python_api/sphinx_doc_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '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 12ffe5b6edf..1261ab7590a 100644 --- a/doc/python_api/sphinx_doc_gen.py +++ b/doc/python_api/sphinx_doc_gen.py @@ -1715,7 +1715,6 @@ except ModuleNotFoundError: fw("if 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") @@ -1727,6 +1726,7 @@ except ModuleNotFoundError: # not helpful since the source is generated, adds to upload size. fw("html_copy_source = False\n") fw("html_show_sphinx = False\n") + fw("html_baseurl = 'https://docs.blender.org/api/current/'\n") fw("html_use_opensearch = 'https://docs.blender.org/api/current'\n") fw("html_split_index = True\n") fw("html_static_path = ['static']\n") -- cgit v1.2.3