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
This function does a very primitive converstion of text data:
} else { // add value if any if (value != null) { s.append(">").append(("")); final String stringValue = value.toString().replaceAll("&", "&"); s.append(getIndentationSpacing(false, indent)); s.append(stringValue).append(("")); } else {
Basically, it only escapes &. This is a problem for me as I have < and > in the data I am retrieving. Even doing a hack like:
final String stringValue = value.toString().replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">");
would fix it for me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This function does a very primitive converstion of text data:
Basically, it only escapes &. This is a problem for me as I have < and > in the data I am retrieving.
Even doing a hack like:
would fix it for me.
The text was updated successfully, but these errors were encountered: