fix: use relative .mdx links on Tier 1 Orgs page#2548
Open
ElliotFriend wants to merge 1 commit into
Open
Conversation
Replace absolute /docs/... links with relative ../path/file.mdx links per Docusaurus convention (docs/platforms/anchor-platform/CONTRIBUTING.md). Relative links with the file extension are validated at build time by onBrokenMarkdownLinks, unlike absolute route links. Fixes stellar#2546 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Tier 1 Organizations documentation page to use Docusaurus-validatable relative .mdx links instead of absolute /docs/... routes, reducing the risk of future internal link rot and aligning with existing repo conventions.
Changes:
- Replaced absolute internal links (
/docs/...) with relative links to target.mdxfiles. - Preserved the existing
#choosing-your-quorum-setanchor while switching to the file-based link target. - Updated index-page links to point to
README.mdxwhere appropriate.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Preview is available here: |
This was referenced Jul 2, 2026
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.
What
Replaces the absolute
/docs/...links on the Tier 1 Organizations page with relative../path/file.mdxlinks, per the Docusaurus convention already codified inanchor-platform/CONTRIBUTING.md.10 distinct link targets updated (14 occurrences). Index pages link to
README.mdx, matching existing precedent indocs/README.mdx. The#choosing-your-quorum-setanchor is preserved on theconfiguring.mdxlink.Why
Relative
.mdxlinks are validated at build time by Docusaurus'sonBrokenMarkdownLinks: "throw", guarding against future link rot. Absolute route links skip that file-based check.Verification
grep '](/docs' docs/validators/tier-1-orgs.mdx→ zero internal absolute links remain#choosing-your-quorum-setresolves to the## Choosing Your Quorum Setheadingprettier -c(matches CIci:mdx) passesFollow-up
This fixes the single page. #2547 tracks the repo-wide sweep of the remaining 6 files plus an automated check (CI gate + pre-commit hint) to prevent regressions.
Fixes #2546
🤖 Generated with Claude Code