fix: correct broken internal documentation anchor links - #592
Merged
Merged
Conversation
Fixes 5 internal fragment mismatches reported in the external link check report: - openapi-conventions#using-openapi-extensions -> #openapi-extensions - asyncapi-conventions#using-asyncapi-extensions -> #asyncapi-extensions - application-config#repository-filtering-properties -> #repository-filtering - jenkins#2-setup-the-jenkins-plugin -> #2-set-up-the-jenkins-plugin (self-referencing, 4 occurrences) - dispatching#common-use-cases -> #script-dispatcher (heading no longer exists; closest relevant section) Verified by rebuilding the site locally with hugo and confirming each generated anchor id matches the referenced fragment. Refs #584 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: Yacine Kheddache <yacine@microcks.io>
yada
force-pushed
the
fix/broken-internal-anchor-links
branch
from
September 18, 2026 23:59
146cf6f to
91ddb6b
Compare
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.
Description
Fixes 5 internal fragment (anchor) mismatches surfaced by the external link check report in #584. These were caused by markdown links referencing anchor slugs that don't match the actual generated heading IDs (or, in one case, a heading that no longer exists).
async-triggers.md#using-openapi-extensions#openapi-extensionsmetadata.md#using-openapi-extensions/#using-asyncapi-extensions#openapi-extensions/#asyncapi-extensionsorganizing-repository.md#repository-filtering-properties#repository-filteringjenkins.md(4 self-references)#2-setup-the-jenkins-plugin#2-set-up-the-jenkins-pluginstateful-mocks.md#common-use-cases(heading no longer exists indispatching.md)#script-dispatcher(closest relevant section)Verification
Built the site locally with
hugo --minifyand confirmed each generatedhrefnow points to an anchor ID that actually exists in the target page's rendered HTML (<h2/h3/h4 id=...>).Note: this PR only fixes the internal anchor errors from the report. The external link failures (podcastaddict.com, asciinema.org) in #584 were diagnosed as false positives (bot-blocking / transient timeout), and a few others (redhat.com/ubi, barcelonajug.org, LFX old domain, a removed YouTube video) are real but external and not addressed here.
Related issue(s)
Refs #584 (not closing — please validate before merge, other items in that report remain open)
@yada please validate before merging.