& -> `&` > -> `>`
Any small library function that can handle this?
Looks like this will do:
function html_entity_decode(s) { var t=document.createElement('textarea'); t.innerHTML = s; var v = t.value; t.parentNode.removeChild(t); return v; }
Source