sgmlish 0.1.0

Simple parsing and deserialization of SGML
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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::data::*;
pub use self::helper::*;
pub use self::marked_sections::*;
pub use self::normalize_end_tags::*;

mod data;
mod helper;
mod marked_sections;
mod normalize_end_tags;