-
-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: fix links url #691
docs: fix links url #691
Conversation
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit fc183d2:
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the catch.
We want to be able to browse docs in github.
Can you make all links relative paths?
docs/api/basic/proxy.mdx
Outdated
@@ -59,7 +59,7 @@ authState.user.name = 'Nina' | |||
|
|||
#### Promises in proxies | |||
|
|||
See [`async`](/docs/advanced/async) for more details. | |||
See [`async`](/docs/guides/async) for more details. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be
See [`async`](/docs/guides/async) for more details. | |
See [`async`](../../guides/async.mdx) for more details. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed, Thx for all!
Hmm, adding extension broke the website. |
@dai-shi Currently the renderer we use to parse the markdown doesn't support it but It should be possible to add a plugin to do that for us. |
Oh, that's unfortunate. I wonder if anyone would be interested in supporting it. |
I am going to change the routes as at the beginning. I leave here the link with the commit of the relative paths with mdx -> |
If it's about a workaround, can it be relative paths without |
sorry for the lapse of time, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Thanks!
#689