HTML reader

Description

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.

Current main features

Examples

Load nodes from HTML

```

use htmldom_read::Node;

let html = r#"

Text

"#; // Load with default settings. let nodes = Node::fromhtml(html, &Default::default()).unwrap().unwrap(); let firstnode = nodes.children().get(0).unwrap(); // First node is
asserteq!("div", firstnode.tag_name().unwrap());

let children = first_node.children();

// First child of

is

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()); ```

Load node with text mixed with children

Text that is not mixed load inside the parent node and not as separate child. ```

use htmldom_read::{Node, LoadSettings};

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()); ```