Small and simple library to query HTML markup for your web scraping needs.
Based on servo libraries. Supports more complicated CSS selectors than other similar libraries.
```rust use crabquery::Document;
let doc = Document::from( "
", );let sel = doc.select("div.container > a.button.link[id=\"linkmain\"]"); let el = sel.first().unwrap();
asserteq!(el.attr("id"), Some("linkmain".tostring()));
let sel = doc.select("div > a > span"); let el = sel.first().unwrap();
asserteq!(el.text(), Some("text hi there".tostring())); ```