rusty_xml_parser/lib.rs
1//! Well-formed XML parser (libxml2 `parser.h` semantics). No C.
2
3#![forbid(unsafe_code)]
4
5mod chvalid_tables;
6pub mod chvalid;
7mod error;
8mod encoding_tables;
9mod encoding_tables_more;
10mod encoding;
11mod parse;
12mod catalog;
13mod html_entities;
14mod html;
15mod xinclude;
16mod dtd;
17
18pub use error::*;
19pub use chvalid::*;
20pub use encoding::*;
21pub use parse::*;
22pub use catalog::*;
23pub use html::*;
24pub use html_entities::{decode_html_text, html_entity};
25pub use xinclude::*;
26pub use dtd::*;