This library is for encoding/escaping special characters in HTML and decoding/unescaping HTML entities as well.
This crate provides some encode_*
functions to encode HTML text in different situations.
For example, to put a text between a start tag <foo>
and an end tag </foo>
, use the encode_text
function to escape every &
, <
, and >
in the text.
rust
assert_eq!("a > b && a < c", html_escape::encode_text("a > b && a < c"));
The functions suffixed with _to_writer
, _to_vec
or _to_string
are useful to generate HTML.
```rust let mut html = String::from("", &mut html)); html.push_str("');");
assert_eq!("", html); ```
rust
assert_eq!("Hello world!", html_escape::decode_html_entities("Hello world!"));
rust
assert_eq!("alert('<script></script>);'", html_escape::decode_script(r"alert('<script><\/script>);'"));
Disable the default features to compile this crate without std.
toml
[dependencies.html-escape]
version = "*"
default-features = false
bash
cargo bench
https://crates.io/crates/html-escape
https://docs.rs/html-escape