html_editor 0.7.0

Pure and simple HTML parser and editor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Traits about editing, querying and stringifying the [`Element`](struct.Element.html) / [`Node`](enum.Node.html).

mod edit;
mod html;
mod query;
mod selector;

pub use edit::Editable;
pub use html::Htmlifiable;
pub use query::Queryable;
pub use selector::Selector;