Crates.io | escaper |
lib.rs | escaper |
version | 0.1.1 |
source | src |
created_at | 2019-08-16 21:02:57.151399 |
updated_at | 2021-05-10 08:35:19.006819 |
description | A library for HTML entity encoding and decoding |
homepage | https://github.com/dignifiedquire/rust-escaper |
repository | https://github.com/dignifiedquire/rust-escaper |
max_upload_size | |
id | 157462 |
size | 152,528 |
All example assume a extern crate escaper;
and use escaper::{relevant functions here};
is present.
escaper::encode_minimal()
encodes an input string using a minimal set of HTML entities.
let title = "Cats & dogs";
let tag = format!("<title>{}</title>", encode_minimal(title));
assert_eq!(tag.as_slice(), "<title>Cats & dogs</title>");
There is also a escaper::encode_attribute()
function for encoding strings that are to be used
as html attribute values.
escaper::decode_html()
decodes an encoded string, replacing HTML entities with the
corresponding characters. Named, hex, and decimal entities are supported. A Result
value is
returned, with either the decoded string in Ok
, or an error in Err
.
let encoded = "Cats & dogs";
let decoded = match decode_html(encoded) {
Err(reason) => panic!("Error {:?} at character {}", reason.kind, reason.position),
Ok(s) => s
};
assert_eq!(decoded.as_slice(), "Cats & dogs");
Both the encoding and decoding functions are available in forms that take a Writer
for output rather
than returning an String
. These version can be used to avoid allocation and copying if the returned
String
was just going to be written to a Writer
anyway.
MIT or Apache 2.0
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in pgp by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.