#![doc= include_str!("../Examples.md")]
mod css;
mod document;
mod dom_tree;
mod entities;
mod matcher;
mod node;
mod selection;
pub mod serializing;
#[cfg(feature = "mini_selector")]
pub mod mini_selector;
pub use document::Document;
pub use dom_tree::Tree;
pub use dom_tree::TreeNodeOps;
pub use entities::Attr;
pub use matcher::Matcher;
#[doc(hidden)]
pub use node::SerializableNodeRef;
pub use node::{Element, Node, NodeData, NodeId, NodeIdProver, NodeRef, TreeNode};
pub use selection::Selection;
pub use html5ever::{local_name, LocalName};