Skip to content

slickplaid/node-ent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ent

Encode and decode HTML entities

example

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

output:

&lt;span&gt;&copy;moo&lt;/span&gt;
π & ρ

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

About

Encode and decode HTML entities

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published