We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
<Link to={encodeURIComponent('%')}>
produces
<a href="%">
not
<a href="%25">
not like
<Link to={encodeURIComponent('?')}>
<a href="%3F">
my workaround is
const a = '!@#%&&*' <Link to={encodeURIComponent(a.replace('%', '%25')}>
which produces
<a href="!%40%23%25%26%26*">
hope this help someone.
The text was updated successfully, but these errors were encountered:
This was an intentional change in v5.
You can read the details in #551 and #516. I forgot to mention that in my unofficial breaking changes documentation: #811
Sorry, something went wrong.
No branches or pull requests
produces
not
not like
produces
my workaround is
which produces
hope this help someone.
The text was updated successfully, but these errors were encountered: