Aemony / fb.HtmlCoder

A dinky little C++ HTML decoder

Home Page:https://www.fredrikblank.com/html-coder/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A dinky little C++ HTML decoder

https://www.fredrikblank.com/html-coder/

License:MIT License


Languages

Language:C++ 100.0%