Fix broken links#295
Open
mintlify[bot] wants to merge 1 commit into
Open
Conversation
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
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.
Summary
Fix broken internal links surfaced while scanning docs changed between 2026-07-13 and 2026-07-20 with
mint broken-links, and unblock the parser so validation can run.Changes
backend-sdks/node.mdx: Removed inline/* ... */annotations inside the hidden{/* ... */}MDX comment block. The nested*/were prematurely closing the outer MDX comment, causingmint validateandmint broken-linksto fail with an acorn parse error at 3693. TypeScript interface signatures in the hidden block are preserved; only inline range/bound annotations (e.g./* 1..20 */,/* max 86400 */) were dropped. This block is not rendered, so no user-visible content changes.async-collaboration/comments/customize-behavior.mdx:/ui-customization/features/async/comments/multithread-comment-dialog→/ui-customization/features/async/comments/multithread-comments/wireframes(page does not exist; retargeted to the correct multithread wireframe page).images/customization/onSidebarOnCommentDialogClick.png→/images/customization/onSidebarOnCommentDialogClick.png(relative path resolved to a nonexistent location; converted to root-relative).api-reference/sdk/models/data-models.mdx:/ui-customization/features/async/notifications/notifications-primitives→/ui-customization/features/async/notifications/notifications-panel/primitives./ui-customization/features/async/notifications/notifications-primitives#common-inputs→/ui-customization/features/async/notifications/notifications-panel/primitives#common-inputs(page split intonotifications-panel/andnotifications-tool/; used the panel primitives page which contains the referencedCommon Inputssection).release-notes/version-5/sdk-changelog.mdx:/ui-customization/features/async/notifications/notifications-primitives→/ui-customization/features/async/notifications/notifications-panel/primitives./ui-customization/features/async/comments/comment-sidebar-components-v2→/ui-customization/features/async/comments/comment-sidebar/comment-sidebar-v2-wireframes./ui-customization/features/async/comments/comment-dialog-components#visibility-banner→/ui-customization/features/async/comments/comment-dialog/wireframes#visibility-banner./ui-customization/features/async/comments/comment-dialog-components#visibility-dropdown-composer→/ui-customization/features/async/comments/comment-dialog/wireframes#visibility-dropdown-composer.Context
mint broken-linksinitially failed to run becausebackend-sdks/node.mdxhad a nested*/inside an MDX comment block, aborting parsing. After that was resolved, the remaining broken internal page links (all pointing at older-components/-primitivespage names that were split into subdirectories) were retargeted to the correct current pages.mint validateandmint broken-linksboth pass after these changes.