Hi, new around here.
This could be a very basic question, but I am a newbie in rust. I want to use [scraper](https://crates.io/crates/scraper)
crate and I would love to know if you guys have way to print the first example. I don't fully understand what to do with the parsed document. Here is the example
use scraper::Html;
let html = r#"
<!DOCTYPE html>
<meta charset="utf-8">
<title>Hello, world!</title>
<h1 class="foo">Hello, <i>world!</i></h1>
"#;
let document = Html::parse_document(html);
I just want to print the tags that we have on that string.
Thanks for the support.