#entity #html-escape #codec #html-encode #html-decode #html-entities

htmlentity

A library for encoding and decoding HTML entities

14 releases (stable)

1.3.2 Jun 7, 2024
1.3.1 Apr 17, 2023
1.2.0 Mar 19, 2021
1.1.1 Feb 18, 2021
0.1.2 Nov 30, 2020

#129 in Encoding

Download history 658/week @ 2024-11-21 753/week @ 2024-11-28 2005/week @ 2024-12-05 2135/week @ 2024-12-12 1483/week @ 2024-12-19 1106/week @ 2024-12-26 2064/week @ 2025-01-02 1706/week @ 2025-01-09 1646/week @ 2025-01-16 1511/week @ 2025-01-23 1962/week @ 2025-01-30 2097/week @ 2025-02-06 2006/week @ 2025-02-13 2126/week @ 2025-02-20 1938/week @ 2025-02-27 2071/week @ 2025-03-06

8,470 downloads per month
Used in 27 crates (10 directly)

MIT license

155KB
5.5K SLoC

htmlentity

A library for encoding and decoding HTML entities.

Docs Build Status codecov

How to use

use htmlentity::entity::{ encode, decode, EncodeType, CharacterSet, ICodedDataTrait };
use htmlentity::types::{ AnyhowResult, Byte };
fn main() -> AnyhowResult<()> {
  let html = "<div name='htmlentity'>Hello!世界!</div>";
  let html_after_encoded = "&lt;div name='htmlentity'&gt;Hello!&#x4e16;&#x754c;!&lt;/div&gt;";
  // 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::<Vec<char>>();
  assert_eq!(encoded_data.to_chars()?, char_list);
  // decode
  let bytes = encoded_data.into_iter().map(|(byte, _)| *byte).collect::<Vec<Byte>>();
  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::<Vec<char>>();
  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

License

MIT License.

Dependencies

~0.3–0.8MB
~18K SLoC