1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! #Lightweight HTML parser
//!
//! Examples:
//!
//! ```rust
//! extern crate htmlstream;
//!
//! fn main() {
//! let html = "this is a test: <a href=\"http://rust-lang.org\">The Rust Programing Language</a>";
//! for (pos, tag) in htmlstream::tag_iter(html) {
//! println!("{:?} {:?}", pos, tag);
//! for (pos, attr) in htmlstream::attr_iter(&tag.attributes) {
//! println!(" {:?} {:?}", pos, attr);
//! }
//! }
//! }
//! ```
//!
//! Output:
//!
//! ```{rust,ignore}
//! Position { start: 0, end: 16 } HTMLTag { name: "", html: "this is a test: ", attributes: "", state: Text }
//! Position { start: 16, end: 47 } HTMLTag { name: "a", html: "<a href=\"http://rust-lang.org\">", attributes: "href=\"http://rust-lang.org\"", state: Opening }
//! Position { start: 0, end: 27 } HTMLTagAttribute { name: "href", value: "http://rust-lang.org" }
//! Position { start: 47, end: 75 } HTMLTag { name: "", html: "The Rust Programing Language", attributes: "", state: Text }
//! Position { start: 75, end: 79 } HTMLTag { name: "a", html: "</a>", attributes: "", state: Closing }
//! ```
pub use ;
pub use ;
pub use ;