Fix broken links#2720
Open
mintlify[bot] wants to merge 5 commits into
Open
Conversation
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
Contributor
Greptile SummaryThis PR fixes internal documentation links for the Mintlify docs site.
Confidence Score: 5/5This looks safe to merge.
Important Files Changed
Reviews (3): Last reviewed commit: "fix: normalize new /docs/*.md links in o..." | Re-trigger Greptile |
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #2720 +/- ##
==========================================
- Coverage 72.55% 72.34% -0.21%
==========================================
Files 902 902
Lines 81820 81820
Branches 7396 7396
==========================================
- Hits 59364 59196 -168
- Misses 20555 20642 +87
- Partials 1901 1982 +81
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
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
Fixes three broken internal documentation links in
docs/usage/transforms.md— the only doc file changed in this run's triggering commit (b01251e— memory2 tf service).Changes
/docs/usage/visualization.md→/usage/visualization/docs/usage/modules.md→/usage/modules/docs/usage/configuration.md→/usage/configurationThese pointed to non-existent paths (Mintlify serves pages without the
/docs/prefix and without the.mdextension). Confirmed against the working link style used elsewhere (e.g.usage/cli.mdlinks to/usage/configuration).Notes on remaining reports
mint broken-linksstill reports 6 remaining items inusage/transforms.md, all pre-existing and not introduced by this run:assets/transforms_tree.svg,assets/transforms.png,assets/transforms_modules.svg— files exist atdocs/usage/assets/and render correctly. The relativeassets/…pattern is used consistently by neighboring pages (e.g.usage/modules.md); flagged as false positives by the checker./dimos/msgs/geometry_msgs/Transform.py#L21,/dimos/core/module.py#L78,/dimos/protocol/tf/tf.py— source code references that live in thedimos/Python package outside the docs repo. Established convention across the docs; correct replacement (if any) cannot be determined without a project-wide decision, so left unchanged.No other pages link to
usage/transforms.md, so no inbound links needed updating.Context
Triggered by merge of #2707 to
main, which modifieddocs/usage/transforms.md.