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
/// Function to parse HTML preamble and locate the html tag.
mod parser;
/// Pest parser for HTML preamble.
mod preamble;
/// Information extracted from parsing the HTML tag.
mod tag_info;

pub use parser::parse_preamble;
pub use tag_info::{HtmlTagInfo, Span, XmlnsPositions};