-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Latest (RC) build breaks links in articles #505
Comments
Hi @charpeni, can I clarify the wanted behavior ? BugIf the current Wanted Behavior Current Behavior Edit: Extra notesIt might be possible as well that current behavior is intended. |
@charpeni Interesting catch here. Thanks. @endiliey I believe it was always the intention to have the latest version not have an explicit version in the link. If you choose a That said, we have now run into this buggy case. There are two options, I think:
I am open to discussing which one is better. |
Changing the behavior to no 1 might potentially break someone's else website since it has been the current behavior for quite a while. Since it is intended, fix no 2 shouldn't be too hard. Just a matter on how we build the link. Edit: See facebook/docusaurus#894 |
Thanks all, I've removed |
I just stumbled over a dead link in one of the RN guides, specifically the link to the Animations guide in: https://facebook.github.io/react-native/docs/animated
After looking into the markdown source the link is correct. It seems like the build process generate version-specific links:
https://facebook.github.io/react-native/docs/0.57-RC/animations#animated-api
this seems like a good idea however for the current0.57-RC
build, which is served as the default version, the version-specific link results in a 404. Using a previous version works as expected: https://facebook.github.io/react-native/docs/0.56/animations#animated-apiMaybe the current version should not include the version identifier but links to the default guide instead?
The text was updated successfully, but these errors were encountered: