Fb.HtmlCoder
A dinky little C++ HTML decoder
Install / Use
/learn @freshe/Fb.HtmlCoderREADME
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. &"¶¾
