#![deny(missing_docs)]
#[macro_use]
extern crate html5ever;
#[macro_use]
extern crate matches;
mod attributes;
mod cell_extras;
pub mod iter;
mod node_data_ref;
mod parser;
mod select;
mod serializer;
#[cfg(test)]
mod tests;
mod tree;
pub use attributes::{Attribute, Attributes, ExpandedName};
pub use node_data_ref::NodeDataRef;
pub use parser::{parse_html, parse_html_with_options, parse_fragment, ParseOpts, Sink};
pub use select::{Selector, Selectors, Specificity};
pub use tree::{Doctype, DocumentData, ElementData, Node, NodeData, NodeRef};
pub mod traits {
pub use html5ever::tendril::TendrilSink;
pub use crate::iter::{ElementIterator, NodeIterator};
}