Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

khvzak/victoria-dom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

victoria-dom

Minimalistic HTML parser with CSS selectors

crates.io Build Status Coverage Status Released API docs Master API docs

The project has been inspired by Mojo::DOM.

Installing

Add the following lines to your Cargo.toml file:

[dependencies]
victoria-dom = "0.1"

and this to your crate root:

extern crate victoria_dom;

Examples

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");
}

Documentation

https://docs.rs/victoria-dom

About

HTML parser with CSS selectors written in Rust

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages