From dbd86bc64c15ea9aed23fa9743eb0b04ff8a56e0 Mon Sep 17 00:00:00 2001 From: Andries Smit Date: Fri, 3 Jul 2026 14:55:34 +0200 Subject: [PATCH] fix(docs-site): remove duplicated src/ segment in GitHub edit-url-template mdBook resolves {path} relative to the book root (docs-site/), which already includes the src/ prefix, so the template was producing .../docs-site/src/src/ instead of .../docs-site/src/. --- docs-site/book.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-site/book.toml b/docs-site/book.toml index 6beb6a27f..f17453ae3 100644 --- a/docs-site/book.toml +++ b/docs-site/book.toml @@ -12,7 +12,7 @@ build-dir = "book" default-theme = "light" preferred-dark-theme = "navy" git-repository-url = "https://github.com/mendixlabs/mxcli" -edit-url-template = "https://github.com/mendixlabs/mxcli/edit/main/docs-site/src/{path}" +edit-url-template = "https://github.com/mendixlabs/mxcli/edit/main/docs-site/{path}" site-url = "/mxcli/" additional-css = ["theme/custom.css"] additional-js = ["theme/mermaid-init.js"]