Conversation
gecube
approved these changes
Feb 20, 2024
Contributor
gecube
left a comment
There was a problem hiding this comment.
LGTM, also it would be nice to make some pipeline and deploy temporary version of the site on some test subdomain.
Member
Author
|
Yeah, as soon as possible :-) |
kvaps
added a commit
that referenced
this pull request
Feb 20, 2024
kvaps
added a commit
that referenced
this pull request
Feb 20, 2024
lexfrei
added a commit
that referenced
this pull request
Apr 12, 2026
A static scan of all {{% ref %}}/{{% relref %}} shortcodes in
content/en/docs/v1/ surfaced 8 unique ref targets (13 usages across
6 files) that did not resolve:
- seven of them used a leading-slashless target (ref "docs/v1/..."),
which Hugo treats as a path relative to the calling page. Since
the calling pages all live under content/en/docs/v1/... the
resolver looked for docs/v1/docs/v1/... and found nothing. Add
the leading slash so they are treated as absolute refs against
content/en/docs/v1/...
- install/providers/hetzner.md pointed Talm readers at
#1-initialize-cluster-configuration, but a '1. Install Dependencies'
section was later added ahead of the initialize step (verified via
git log -S), so the real anchor is #2-initialize-cluster-configuration.
Update the hetzner.md link and give it the leading slash at the
same time.
Verified the full fix with a Python walker that re-resolves every
{{% ref %}} target against the actual file tree — the walker goes
from 8 missing targets down to 0 after the change. Hugo still builds
clean (440 pages).
Files touched:
- content/en/docs/v1/install/providers/hetzner.md
- content/en/docs/v1/operations/services/_index.md
- content/en/docs/v1/guides/concepts.md
- content/en/docs/v1/operations/services/monitoring/dashboards.md
- content/en/docs/v1/operations/services/monitoring/alerting.md
- content/en/docs/v1/operations/services/monitoring/logs.md
Assisted-By: Claude <noreply@anthropic.com>
Signed-off-by: Aleksei Sviridkin <f@lex.la>
lexfrei
added a commit
that referenced
this pull request
Apr 12, 2026
A static scan of all {{% ref %}}/{{% relref %}} shortcodes in
content/en/docs/v1/ surfaced 8 unique ref targets (13 usages across
6 files) that did not resolve:
- seven of them used a leading-slashless target (ref "docs/v1/..."),
which Hugo treats as a path relative to the calling page. Since
the calling pages all live under content/en/docs/v1/... the
resolver looked for docs/v1/docs/v1/... and found nothing. Add
the leading slash so they are treated as absolute refs against
content/en/docs/v1/...
- install/providers/hetzner.md pointed Talm readers at
#1-initialize-cluster-configuration, but a '1. Install Dependencies'
section was later added ahead of the initialize step (verified via
git log -S), so the real anchor is #2-initialize-cluster-configuration.
Update the hetzner.md link and give it the leading slash at the
same time.
Verified the full fix with a Python walker that re-resolves every
{{% ref %}} target against the actual file tree — the walker goes
from 8 missing targets down to 0 after the change. Hugo still builds
clean (440 pages).
Files touched:
- content/en/docs/v1/install/providers/hetzner.md
- content/en/docs/v1/operations/services/_index.md
- content/en/docs/v1/guides/concepts.md
- content/en/docs/v1/operations/services/monitoring/dashboards.md
- content/en/docs/v1/operations/services/monitoring/alerting.md
- content/en/docs/v1/operations/services/monitoring/logs.md
Assisted-By: Claude <noreply@anthropic.com>
Signed-off-by: Aleksei Sviridkin <f@lex.la>
lexfrei
added a commit
that referenced
this pull request
Apr 15, 2026
Leading-slash ref issues in the v1.2 tree were already fixed by the v1.0/v1.1/v1.2 refactor. Six remaining broken links survived the refactor because they were plain markdown links, not ref shortcodes: - hetzner.md — stale anchor #1-initialize-cluster-configuration → #2 (talm.md grew a new "## 1. Install Dependencies" section ahead of "Initialize Cluster Configuration", which is now ## 2). - servers-com/_index.md — unversioned /docs/getting-started/... link wrapped in a ref shortcode and pointed at /docs/v1.2/. - operations/faq/_index.md — same fix for /docs/operations/... link → ref /docs/v1.2/operations/troubleshooting. - oidc/enable_oidc.md, oidc/self-signed-certificates.md — replaced Hugo-unfriendly relative paths (../sibling/) with absolute ref shortcodes so the build fails if the target is renamed. - virtualization/vm-instance.md — ./DEVELOPMENT.md pointed at a file that does not exist; replaced with ref to /docs/v1.2/development. Assisted-By: Claude <noreply@anthropic.com> Signed-off-by: Aleksei Sviridkin <f@lex.la>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
link cozystack/cozystack#25