From 2a93e8cc44bd383bccebdbb5265a013e8f207d58 Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Thu, 11 Aug 2022 18:01:47 +0200 Subject: [PATCH] doc: add missing caption for extlinks Starting with Sphinx 6.0, extlinks caption with %s will be required. Sphinx 5.x already warns about this requirements, so fix it. Signed-off-by: Gerard Marull-Paretas --- doc/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 662cd2d7217..4c687e7cf9b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -280,8 +280,8 @@ graphviz_dot_args = [ # -- Linkcheck options ---------------------------------------------------- extlinks = { - "jira": ("https://jira.zephyrproject.org/browse/%s", ""), - "github": ("https://github.com/zephyrproject-rtos/zephyr/issues/%s", ""), + "jira": ("https://jira.zephyrproject.org/browse/%s", "JIRA #%s"), + "github": ("https://github.com/zephyrproject-rtos/zephyr/issues/%s", "GitHub #%s"), } linkcheck_timeout = 30