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
There is a bug with resources that are JSON and contain strings with double quotes in them.
Example:
{ "html": "<h1 style=\"text-align:center\">TEXT</h1>" }
is encoded as:
{ "html": "<h1 style=\\"text-align:center\\">TEXT</h1>" }
We should remove the "extra" backslash
The text was updated successfully, but these errors were encountered:
geosolutions-it#229: unescape quotes inside other quotes (with a doub…
3a02020
…le escape) when normalizing inserts
#229: unescape quotes inside other quotes (with a double escape) when…
65cd8f1
… normalizing inserts (#230)
mbarto
No branches or pull requests
There is a bug with resources that are JSON and contain strings with double quotes in them.
Example:
is encoded as:
We should remove the "extra" backslash
The text was updated successfully, but these errors were encountered: