brik 0.10.0

HTML tree manipulation library - a building block for HTML parsing and manipulation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// The non-identifying parts of an attribute.
pub mod attrib;

/// Convenience wrapper around an IndexMap for HTML/XML attributes.
pub mod attribs;

/// Expanded name with namespace URL and local name.
pub mod expanded_name;

pub use attrib::Attribute;
pub use attribs::Attributes;
pub use expanded_name::ExpandedName;