| Crates.io | victoria-dom |
| lib.rs | victoria-dom |
| version | 0.1.2 |
| created_at | 2016-07-26 00:13:21.303014+00 |
| updated_at | 2018-06-05 01:19:16.908798+00 |
| description | Minimalistic HTML parser with CSS selectors |
| homepage | https://github.com/khvzak/victoria-dom |
| repository | https://github.com/khvzak/victoria-dom |
| max_upload_size | |
| id | 5787 |
| size | 178,083 |
Minimalistic HTML parser with CSS selectors
The project has been inspired by Mojo::DOM.
Add the following lines to your Cargo.toml file:
[dependencies]
victoria-dom = "0.1"
and this to your crate root:
extern crate victoria_dom;
extern crate victoria_dom;
use victoria_dom::DOM;
fn main() {
let html = r#"<html><div id="main">Hello, <a href="http://rust-lang.org" alt="The Rust Programing Language">Rust</a></div></html>"#;
let dom = DOM::new(html);
assert_eq!(dom.at("html").unwrap().text_all(), "Hello, Rust");
assert_eq!(dom.at("div#main > a").unwrap().attr("alt").unwrap(), "The Rust Programing Language");
}