Skip to content

Commit

Permalink
Fix canonical link generated by sphinx (#460)
Browse files Browse the repository at this point in the history
A trailing slash is necessary for page links to be appended correctly

Signed-off-by: Addisu Z. Taddese <[email protected]>
  • Loading branch information
azeey authored Jul 18, 2024
1 parent 19acc26 commit ef216d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit ef216d6

Please sign in to comment.