Skip to content
Nick Drewe edited this page Aug 7, 2018 · 2 revisions

xml-sanitize-string

This module replaces characters that are not valid in XML in a string with XML/HTML character entities (and vice versa).

Emoji, and many other characters are not valid in XML, and may cause problems if they sneak into your XML. This small module has two methods to sanitize (escape invalid characters) a string, and to unescape a string.

Installation & usage

Install xml-sanitize-string via NPM:

npm install xml-sanitize-string

In Node:

var xmlSanitizeString = require('xml-sanitize-string');

// Sanatize a string for use in XML by escaping invalid characters to XML character entities.
xmlSanitizeString.escape('Some πŸ‘‰ invalid πŸ’» characters πŸŽ’')
// Some &#1f449; invalid &#1f4bb; characters &#1f392;

// Unescape a string containing XML character entities to unicode characters
xmlSanitizeString.unescape('Some &#1f449; invalid &#1f4bb; characters &#1f392;')
// Some πŸ‘‰ invalid πŸ’» characters πŸŽ’

About

xml-sanitize-string was built by Nick Drewe to deal with user searches on searchmy.bio that may contain emoji, or other characters that are invalid in XML.

Clone this wiki locally