Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 886 Bytes

readme.markdown

File metadata and controls

49 lines (30 loc) · 886 Bytes

ent

Encode and decode HTML entities

browser support

build status

example

var ent = require('ent');
console.log(ent.encode('<span>©moo</span>'))
console.log(ent.decode('&pi; &amp; &rho;'));
&lt;span&gt;&copy;moo&lt;/span&gt;
π & ρ

ent

methods

encode(str)

Escape unsafe characters in str with html entities.

decode(str)

Convert html entities in str back to raw text.

credits

HTML entity tables shamelessly lifted from perl's HTML::Entities

install

With npm do:

npm install ent

license

perl