// Generated by Lisette bindgen
// Source: html (Go stdlib)
// Go: 1.25.5
// Lisette: 0.1.14
/// EscapeString escapes special characters like "<" to become "<". It
/// escapes only five such characters: <, >, &, ' and ".
/// [UnescapeString](EscapeString(s)) == s always holds, but the converse isn't
/// always true.
pub fn EscapeString(s: string) -> string
/// UnescapeString unescapes entities like "<" to become "<". It unescapes a
/// larger range of entities than [EscapeString] escapes. For example, "á"
/// unescapes to "รก", as does "á" and "á".
/// UnescapeString([EscapeString](s)) == s always holds, but the converse isn't
/// always true.
pub fn UnescapeString(s: string) -> string