steamyalt
Results
1
comments of
steamyalt
As a temporary workaround, I currently have the following code: ```rust let items = dom.query_selector("li.example-class").unwrap(); let links: Vec = items .filter_map(|e| e.get(&parser).and_then(tl::Node::children)) .filter_map(|e| e.all(&parser)[1].as_tag()) .map(tl::HTMLTag::attributes) .filter_map(|e| e.get("href").flatten().and_then(tl::Bytes::try_as_utf8_str)) .collect(); ``` What...