xml-entities

0.0.1 • Public • Published

xml-entities

Stupidly simple XML 1.0 entity encoder/decoder

Overview

XML 1.0 defines 5 standard entities - ", ', &, <, and >. I define a few more - \t, \n, and \r. This module encodes/decodes them.

Installation

Available via npm:

$ npm install xml-entities

Or via git:

$ git clone git://github.com/deoxxa/xml-entities.git node_modules/xml-entities

Usage

var xmlentities = require("xml-entities");
 
var str = "<a>lol</a>";
console.log(str);
 
str = xmlentities.encode(str);
console.log(str);
 
str = xmlentities.decode(str);
console.log(str);

License

3-clause BSD. A copy is included with the source.

Contact

Readme

Keywords

none

Package Sidebar

Install

npm i xml-entities

Weekly Downloads

91

Version

0.0.1

License

BSD

Last publish

Collaborators

  • deoxxa