Skip to content

freshe/fb.HtmlCoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fb.HtmlCoder

A dinky little C++ HTML decoder I use for unescaping / decoding html entities in my own stuff

fb::HtmlCoder html_decoder;

std::string html_text =  
    ""Some" text with HTML stuff in it. &"¶¾";

html_decoder.decode(html_text);
std::cout << html_text << std::endl;

//-> Unescape / decoded : "Some" text with HTML stuff in it. &"¶¾