Fix broken links and anchors flagged by docusaurus build#141
Fix broken links and anchors flagged by docusaurus build#141rosensilva wants to merge 1 commit intowso2:mainfrom
Conversation
Resolves all broken markdown links and broken anchors reported by `npm run build`, so the production build runs clean. Markdown links: - intercom/overview: ../../overview.md -> ../../../overview.md (was resolving to a non-existent connectors/catalog/overview.md) - twilio/4.0.x/overview: setup-guide.md -> ../setup-guide.md (the file lives at the parent twilio/ dir, not in 4.0.x/) - database/mssql/example & database/redis/example: relative paths corrected to reach develop/create-integrations/create-new-integration.md (redis was pointing at a non-existent getting-started/ path) - integration-artifacts/event/azure-service-bus: connector dir is asb/, not azure-service-bus/ - integration-artifacts/file/high-availability: dropped one extra ../ that was escaping out of /docs/ - reference/overview & reference/protocols: data-formats.md -> data-formats/index.md (data-formats is a directory) Anchor: - intercom/action-reference: setup-guide#step-6-... -> step-5-... (heading was renumbered; only step-5 exists) Page link: - get-started/key-concepts: /docs/develop/organize-code/ -> /docs/develop/organize-code/overview (no index page exists) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
|
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 20 minutes and 45 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (10)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Why
npm run buildwas warning on 9 broken markdown links and 1 broken anchor. Anchor fixes from a recent merge covered two of them; this PR closes the rest so the production build runs clean.What
Markdown link path corrections (relative paths now point at existing files):
intercom/overview→ connectors overview was off by one..twilio/4.0.x/overview→ setup-guide lives at the parenttwilio/dir, not in the version subdirdatabase/mssql/example&database/redis/example→ both now point at the realdevelop/create-integrations/create-new-integrationevent/azure-service-bus→ connector dir isasb/, notazure-service-bus/file/high-availability→ one extra../was escaping/docs/reference/overview&reference/protocols→data-formats.mdis a directory; pointed to itsindex.mdAnchor:
intercom/action-reference→ setup-guide step renumbered fromstep-6-…tostep-5-…Page link:
get-started/key-concepts→/docs/develop/organize-code/had no index page; pointed at/docs/develop/organize-code/overviewNo content rewrites — only the link targets/relative paths.
Verify
npm run buildruns clean: no broken-link / broken-anchor warnings.🤖 Generated with Claude Code