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
/* --- description: Two useful methods for stings to encode and decode html/xml elements authors: - Jean-Nicolas Boulay Desjardins (http://jean-nicolas.name) license: - MIT-style license requires: - core/1.3: '*' provides: - encodeXML - decodeXML ... */ String.implement({ encodeXML: function(){ var xml_to_escaped = { '&': '&', '"': '"', '<': '<', '>': '>' }; return String(this).replace(/([\&"<>])/g, function(str, item) { return xml_to_escaped[item]; }); }, decodeXML: function(){ var escaped_to_xml = { '&': '&', '"': '"', '<': '<', '>': '>' }; return String(this).replace(/("|<|>|&)/g, function(str, item) { return escaped_to_xml[item]; }); } });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: