From c1ecd947acb08dc7025d187be1b4f40e0632848b Mon Sep 17 00:00:00 2001 From: k3nny Date: Sun, 12 Jul 2026 00:01:29 +0200 Subject: [PATCH] =?UTF-8?q?docs(releaser):=20fix=20Geekdoc=20edit=20path?= =?UTF-8?q?=20=E2=80=94=20content/=20was=20duplicated?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Geekdoc sets geekdocFilePath to the file path relative to the Hugo working dir (docs/), so it already begins with content/. The previous value "docs/content" caused the join to produce docs/content/content/. Corrected to "_edit/main/docs". Co-Authored-By: Claude Sonnet 4.6 --- docs/hugo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/hugo.toml b/docs/hugo.toml index a111790..b818ec3 100644 --- a/docs/hugo.toml +++ b/docs/hugo.toml @@ -15,7 +15,7 @@ pygmentsCodeFences = true [params] geekdocLogo = "images/releaser-logo-1024.png" geekdocRepo = "https://git.k3nny.fr/k3nny/releaser" - geekdocEditPath = "_edit/main/docs/content" + geekdocEditPath = "_edit/main/docs" geekdocSearch = true geekdocMenuBundle = true geekdocBreadcrumb = false