html_editor 0.7.0

Pure and simple HTML parser and editor.
Documentation
1
2
3
4
5
6
7
8
9
/// A selector with a single component, such as a single
/// id selector or type selector, that's not used in combination
/// with or contains any other selector component or combinator.
#[derive(Debug)]
pub enum SimpleSelector {
    Class(String),
    Id(String),
    Tag(String),
}