From d1a7e030c5daa4a09ee93b8af6b28ecaac5d34d0 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Wed, 10 Apr 2024 17:21:42 +0200 Subject: [PATCH] docs: don't suffix page permalink with a slash As it breaks relative links to other pages. For example, the BOOT_LOADER_INTERFACE page has a relative link to AUTOMATIC_BOOT_ASSESSMENT. With a slash in the page's permalink, that link leads to: http://127.0.0.1:4000/BOOT_LOADER_INTERFACE/AUTOMATIC_BOOT_ASSESSMENT which is incorrect. Dropping the trailing slash makes the link link to the correct place: http://127.0.0.1:4000/AUTOMATIC_BOOT_ASSESSMENT Resolves: #32088 --- docs/_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_config.yml b/docs/_config.yml index 412db1f413..e8b9eea8cd 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -4,7 +4,7 @@ title: systemd baseurl: "" # the subpath of your site, e.g. /blog/ url: "https://systemd.io" # the base hostname & protocol for your site -permalink: /:title/ +permalink: /:title # Build settings markdown: kramdown