sgmlish 0.2.0

Simple parsing and deserialization of SGML
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Utility functions and types for transforming [`SgmlFragment`]s.
//!
//! Transforms usually normalize data into a more suitable format for deserialization.
//!
//! [`SgmlFragment`]: crate::SgmlFragment

pub use self::normalize_end_tags::*;
pub use self::transform::*;

mod normalize_end_tags;
mod transform;