From 1e79f22b0c7b8f9aa993bc116bd96015e499583b Mon Sep 17 00:00:00 2001 From: "Addisu Z. Taddese" Date: Wed, 17 Jul 2024 16:11:01 -0500 Subject: [PATCH] Fix canonical link generated by sphinx A trailing slash is necessary for page links to be appended correctly Signed-off-by: Addisu Z. Taddese --- conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.py b/conf.py index 614548934..90826971f 100644 --- a/conf.py +++ b/conf.py @@ -32,7 +32,7 @@ sys.path.append(str(Path(__file__).parent)) from base_conf import * # noqa -html_baseurl = f"{html_context['deploy_url']}/docs/latest" # noqa +html_baseurl = f"{html_context['deploy_url']}/docs/latest/" # noqa html_context.update({ "github_user": "gazebosim",