Outline HTML documents for better SEO.
```rust use html_outliner::Outline;
const MAX_DEPTH: usize = 50;
let outline = Outline::parse_html(r"
", MAX_DEPTH);
println!("{}", outline);
/* 1. Header Top 2. Header 1 1. Header 2 1. Header 3 1. Header 4 1. Header 5 1. Header 6 */ ```
https://crates.io/crates/html-outliner
https://docs.rs/html-outliner