# es-escape-html [![NPM Version][npm-version-image]][npm-url] [![NPM Downloads][npm-downloads-image]][npm-url] Escape string for use in HTML This module exports a single function, `escapeHtml`, that is used to escape a string of content such that it can be interpolated in HTML content. ## Installation This is a [Node.js](https://nodejs.org/en/) module available through the [npm registry](https://www.npmjs.com/). Installation is done using the [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): ```bash $ npm install es-escape-html ``` ## API ### escapeHtml(string) Escape special characters in the given string of text, such that it can be interpolated in HTML content. This function will escape the following characters: `"`, `'`, `&`, `<`, and `>`. **Note** that the escaped value is only suitable for being interpolated into HTML as the text content of elements in which the tag does not have different escaping mechanisms (it cannot be placed inside `