Skip to content

esdiscuss/ent

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Encode and decode HTML entities

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%