We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
mdast-util-gfm-autolink-literal
Currently the email search regex uses a lookbehind assertion, which unfortunately doesn't support older iOS versions <=16 (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Lookbehind_assertion), meaning that users would run into errors with this. I currently patch out this regex, but I thought it would be helpful for others if this package did some workaround to lookbehinds here.
mdast-util-gfm-autolink-literal/lib/index.js
Line 135 in ba83f42
Lookbehind assertion causes error
Lookbehind assertion avoided because it doesn't support older iOS
iOS/Safari 16
N/A
Next.js
The text was updated successfully, but these errors were encountered:
Duplicate of #10
Sorry, something went wrong.
No branches or pull requests
Initial checklist
Affected package
mdast-util-gfm-autolink-literal
Steps to reproduce
Currently the email search regex uses a lookbehind assertion, which unfortunately doesn't support older iOS versions <=16 (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Lookbehind_assertion), meaning that users would run into errors with this. I currently patch out this regex, but I thought it would be helpful for others if this package did some workaround to lookbehinds here.
mdast-util-gfm-autolink-literal/lib/index.js
Line 135 in ba83f42
Actual behavior
Lookbehind assertion causes error
Expected behavior
Lookbehind assertion avoided because it doesn't support older iOS
Runtime
iOS/Safari 16
Package manager
N/A
Operating system
N/A
Build and bundle tools
Next.js
The text was updated successfully, but these errors were encountered: