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
Could a configuration option be added to automatically sanitize smart quotes?
I believe that you could use something like this:
str = str.replace( /\u2018|\u2019|\u201A|\uFFFD/g, "'" ); str = s.replace( /\u201c|\u201d|\u201e/g, '"' );
The text was updated successfully, but these errors were encountered:
Perhaps an option to remove non-breaking spaces too.
stry = str.replace(/[\u02DC|\u00A0]/g, " ");
NOTE: I prefer using ASCII7 as much as possible.
Sorry, something went wrong.
No branches or pull requests
Could a configuration option be added to automatically sanitize smart quotes?
I believe that you could use something like this:
The text was updated successfully, but these errors were encountered: