html-unescape ( str -- newstr )


Vocabulary
html.entities

Inputs
stra string


Outputs
newstra string


Word description
Convert all named and numeric character references (e.g. >, >, >) in the string str to the corresponding unicode characters using the rules defined by the HTML5 standard.

Examples
USING: html.entities prettyprint ; "x < 2 &&amp y > 5" html-unescape .
"x < 2 && y > 5"


Definition