11 lines
257 B
Rust
11 lines
257 B
Rust
|
|
pub fn html_escape(c: u8) -> Option<&'static [u8]> {
|
||
|
|
match c as char {
|
||
|
|
'>' => Some(b">"),
|
||
|
|
'<' => Some(b"<"),
|
||
|
|
'&' => Some(b"&"),
|
||
|
|
'\'' => Some(b"'"),
|
||
|
|
'"' => Some(b"""),
|
||
|
|
_ => None,
|
||
|
|
}
|
||
|
|
}
|