From 2aff23616d8eaa7fa1a0c83bf0a50fb2b96193b6 Mon Sep 17 00:00:00 2001 From: Zubin Duggal <zubin.duggal@gmail.com> Date: Tue, 14 Nov 2023 15:42:22 +0530 Subject: [PATCH] users-guide: Fix links to libraries from the users-guide. The unit-ids generated in c1a3ecde720b3bddc2c8616daaa06ee324e602ab include the package name, so we don't need to explicitly add it to the links. Fixes #24151 --- docs/users_guide/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/users_guide/conf.py b/docs/users_guide/conf.py index 962982ffd3fb..a6367ecf44bd 100644 --- a/docs/users_guide/conf.py +++ b/docs/users_guide/conf.py @@ -225,7 +225,7 @@ def haddock_role(lib): # for the template_haskell.rst example this will be '..' current_doc_to_topdir = os.path.relpath(topdir, os.path.dirname(current_doc)) - relative_path = '%s/%s/%s-%s' % (current_doc_to_topdir, libs_base_uri, lib, lib_version) + relative_path = '%s/%s/%s' % (current_doc_to_topdir, libs_base_uri, lib_version) uri = '%s/%s.html%s' % (relative_path, module, anchor) -- GitLab