This library allows to read HTML strings and convert them to node tree. With the tree it is easier to process data that is stored as HTML/XML file. It is also possible to change the nodes and convert them back into HTML string.
```
let html = r#"
Text
let children = first_node.children();
// First child of
let firstchild = children.get(0).unwrap(); asserteq!("p", firstchild.tagname().unwrap()); /// The child of
is Text asserteq!("Text", firstchild.children().get(0).unwrap().text().unwrap()); ```
Text that is not mixed load inside the parent node and not as separate child. ```
let html = r#"
Text child more text
"#; let settings = LoadSettings::new().alltextseparately(false);let from = Node::from_html(html, &settings).unwrap().unwrap(); let node = from.children().get(0).unwrap(); let children = node.children();
let firsttext = children.get(0).unwrap(); asserteq!("Text ", first_text.text().unwrap());
let sup = children.get(1).unwrap(); assert_eq!("child", sup.text().unwrap());
let lasttext = children.get(2).unwrap(); asserteq!(" more text", last_text.text().unwrap()); ```