Html data structures for rust.
To provide data types that will make it easier to test views. Ultimately allowing render functions that return Nodes or similar to be compared against data structures, rather than strings.
This could also be helpful when constructing future templating/macro based html generators. As they could focus on building these trees, rather than string types, leaving rendering to something else.
Currently the types try to be as open as possible, allowing the end-user to manipulate the tree however they see fit. However they will not be able to create a tree that is invalid
Currently implements a general shape over html, covering text nodes, comment nodes, and element nodes. Element nodes can be void or non-void.
See tests for usage examples
Also note that rendering uses the public interfaces entirely, so the tree can be rendered to other data types if necessary, though a string rendering module is included.