Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 446 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 446 Bytes

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. &"¶¾