Describe the issue:
The "What's Next" section at the bottom of docs/introduction.md contains two broken relative links:
- Start to [install OpenKruise](./docs/installation).
- Learn OpenKruise's [Architecture](./docs/core-concepts/architecture).
Because this file lives at /docs/introduction.md, the ./docs/ prefix creates a path like /docs/docs/installation which doesn't exist. The correct relative paths are ./installation and ./core-concepts/architecture.
Steps to reproduce:
- Open https://openkruise.io/docs/ (the Introduction page)
- Click either link in the "What's Next" section
- Get a 404
Expected behavior:
Links navigate to the installation and architecture pages.
Actual behavior:
Links are broken — the ./docs/ prefix doubles the path segment.
Describe the issue:
The "What's Next" section at the bottom of
docs/introduction.mdcontains two broken relative links:Because this file lives at
/docs/introduction.md, the./docs/prefix creates a path like/docs/docs/installationwhich doesn't exist. The correct relative paths are./installationand./core-concepts/architecture.Steps to reproduce:
Expected behavior:
Links navigate to the installation and architecture pages.
Actual behavior:
Links are broken — the
./docs/prefix doubles the path segment.