lightml 0.0.2

Parser for XML and HTML
Documentation
1
2
3
4
5
6
7
fn main() {
    use lightml::matching::Selector;
    // let selector = "a[href^='/news/articles']";
    let selector = "#nations-news-uk";
    let selector = Selector::from_string(selector.into());
    dbg!(selector);
}