Crates.io

HTML Query Parser

Pure, simple and elegant HTML parser and query selector.

Example

Parse HTML segment/document

```rust use htmlqueryparser::parse;

let document = parse(""); println!("{:#?}", document); ```

Output:

rust [ Element { name: "p", attrs: { "class": "content", }, children: [ Text( "Hello, world!", ), ], }, ]

Query an element by classname

```rust use htmlqueryparser::{parse, Queryable, Selector};

let html = r#"

Hello World
Last Element
"#; let nodes = parse(html); let selector = Selector::from(".last"); let element = nodes.query(&selector).unwrap(); ```

Query all elements by tag

```rust use htmlqueryparser::{parse, Queryable, Selector};

let html = r#"

Hello World
Last Element
"#; let nodes = parse(html); let selector = Selector::from("span"); let elements = nodes.query_all(&selector); ```

Edit the HTML

```rust use htmlqueryparser::{parse, Trimable, Htmlifiable};

let html = r#"

Hello World
Last Element
"#; let html = parse(html).trim().html(); println!("{}", html); ```

Output:

```log

HelloWorld
Last Element

```