An open API service indexing awesome lists of open source software.

https://github.com/fefit/htmlentity

A library for encoding and decoding html entities.
https://github.com/fefit/htmlentity

Last synced: 6 months ago
JSON representation

A library for encoding and decoding html entities.

Awesome Lists containing this project

README

          

# htmlentity

A library for encoding and decoding HTML entities.

[![Docs](https://docs.rs/htmlentity/badge.svg)](https://docs.rs/htmlentity)
[![Build Status](https://github.com/fefit/htmlentity/actions/workflows/test.yml/badge.svg)](https://github.com/fefit/htmlentity/actions)
[![codecov](https://codecov.io/gh/fefit/htmlentity/branch/main/graph/badge.svg)](https://codecov.io/gh/fefit/htmlentity)

## How to use

```rust
use htmlentity::entity::{ encode, decode, EncodeType, CharacterSet, ICodedDataTrait };
use htmlentity::types::{ AnyhowResult, Byte };
fn main() -> AnyhowResult<()> {
let html = "

Hello!世界!
";
let html_after_encoded = "<div name='htmlentity'>Hello!世界!</div>";
// encode
let encoded_data = encode(
html.as_bytes(),
// encode format
&EncodeType::NamedOrHex,
// charcters need to be encoded
&CharacterSet::HtmlAndNonASCII
);
assert_eq!(encoded_data.to_bytes(), html_after_encoded.as_bytes());
assert_eq!(encoded_data.to_string()?, String::from(html_after_encoded));
let char_list = String::from(html_after_encoded).chars().collect::>();
assert_eq!(encoded_data.to_chars()?, char_list);
// decode
let bytes = encoded_data.into_iter().map(|(byte, _)| *byte).collect::>();
let decoded_data = decode(&bytes);
assert_eq!(decoded_data.to_bytes(), html.as_bytes());
assert_eq!(decoded_data.to_string()?, String::from(html));
let char_list = String::from(html).chars().collect::>();
assert_eq!(decoded_data.to_chars()?, char_list);
// shortcut usage
assert_eq!(
encode(
html.as_bytes(),
&EncodeType::NamedOrHex,
&CharacterSet::HtmlAndNonASCII,
).to_string()?,
String::from(html)
);
Ok(())
}
```

For more details, please see the document in [Docs.rs](https://docs.rs/htmlentity)

## License

[MIT License](./LICENSE).