Check License: MIT Rustc Version 1.65+

h2s

A declarative HTML parser library in Rust, which works like a deserializer from HTML to struct.

Example

```rust use h2s::FromHtml;

[derive(FromHtml, Debug, Eq, PartialEq)]

pub struct Page { #[h2s(attr = "lang")] lang: String, #[h2s(select = "div > h1.blog-title")] blog_title: String, #[h2s(select = ".articles > div")] articles: Vec

, }

[derive(FromHtml, Debug, Eq, PartialEq)]

pub struct Article { #[h2s(select = "h2 > a")] title: String, #[h2s(select = "div > span")] viewcount: usize, #[h2s(select = "h2 > a", attr = "href")] url: String, #[h2s(select = "ul > li")] tags: Vec, #[h2s(select = "ul > li:nth-child(1)")] firsttag: Option, }

let html = r#"

My tech blog

article1

901 Views
  • Tag1
  • Tag2

article2

849 Views

    article3

    103 Views
    • Tag3
    "#;

    let page = h2s::parse::(html).unwrap();

    asserteq!(page, Page { lang: "en".tostring(), blogtitle: "My tech blog".tostring(), articles: vec![ Article { title: "article1".tostring(), url: "https://example.com/1".tostring(), viewcount: 901, tags: vec!["Tag1".tostring(), "Tag2".tostring()], firsttag: Some("Tag1".tostring()), }, Article { title: "article2".tostring(), url: "https://example.com/2".tostring(), viewcount: 849, tags: vec![], firsttag: None, }, Article { title: "article3".tostring(), url: "https://example.com/3".tostring(), viewcount: 103, tags: vec!["Tag3".tostring()], firsttag: Some("Tag3".to_string()), }, ] });

    // When the input HTML document structure does not match the expected, // h2s::parse will return an error with a detailed reason. let invalidhtml = html.replace(r#"article3"#, ""); let err = h2s::parse::(invalidhtml).unwraperr(); asserteq!( err.to_string(), "articles: [2]: title: mismatched number of selected elements by \"h2 > a\": expected exactly one element, but no elements found" ); ```

    Supported types

    You can use the following types as a field value of the struct to parse.

    Basic types

    Container types (where T is a basic type)

    License

    MIT