odysseus

Values

pub fn unescape(escaped: String) -> String

Unescapes a string by converting HTML entities back to their original characters:

  • &lt; becomes <
  • &gt; becomes >
  • &amp; becomes &
  • &quot; becomes "
  • &#39; becomes ' etc.
Search Document