Conversation
Broken link on the deployment.md, added the doc folder suffix needed
There was a problem hiding this comment.
Pull request overview
Updates documentation snippet content to fix an internal link to the “Supported MongoDB deployments” page.
Changes:
- Updated the “Supported MongoDB deployments” link in
pcsm-description.mdto point at a different relative path.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
snippets/pcsm-description.md
Outdated
| @@ -1,3 +1,3 @@ | |||
| Percona ClusterSync for MongoDB (PCSM) is a tool for replicating data from a source MongoDB cluster to a target MongoDB cluster. It enables you to migrate from MongoDB Atlas or MongoDB Enterprise Edition to Percona Server for MongoDB with zero downtime. Check [Supported MongoDB deployments](../deployment.md). | |||
| Percona ClusterSync for MongoDB (PCSM) is a tool for replicating data from a source MongoDB cluster to a target MongoDB cluster. It enables you to migrate from MongoDB Atlas or MongoDB Enterprise Edition to Percona Server for MongoDB with zero downtime. Check [Supported MongoDB deployments](../docs/deployment.md). | |||
There was a problem hiding this comment.
The new link target ../docs/deployment.md will likely still be broken when this snippet is included into docs/index.md / docs/installation.md via pymdownx.snippets, because MkDocs resolves relative links relative to the including page (in docs/), not the snippets/ directory. From docs/index.md, ../docs/deployment.md points outside the docs root. Consider linking to deployment.md instead (same directory as the including pages).
| Percona ClusterSync for MongoDB (PCSM) is a tool for replicating data from a source MongoDB cluster to a target MongoDB cluster. It enables you to migrate from MongoDB Atlas or MongoDB Enterprise Edition to Percona Server for MongoDB with zero downtime. Check [Supported MongoDB deployments](../docs/deployment.md). | |
| Percona ClusterSync for MongoDB (PCSM) is a tool for replicating data from a source MongoDB cluster to a target MongoDB cluster. It enables you to migrate from MongoDB Atlas or MongoDB Enterprise Edition to Percona Server for MongoDB with zero downtime. Check [Supported MongoDB deployments](deployment.md). |
Fixed the path to the doc to the working one
|
Hi @pgstath . Thank you for the contribution! I have corrected the path to the doc. Othervise approved. |
Broken link on the deployment.md, added the doc folder suffix needed