diff --git a/src/lib.rs b/src/lib.rs index 10dae1a..adf7107 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,6 +11,7 @@ mod header; mod utils; // expose the lexer and the parser +pub use crate::header::RtfHeader; pub use crate::lexer::Lexer; -pub use crate::parser::{Parser, Painter}; +pub use crate::parser::{Painter, Parser, RtfDocument, StyleBlock}; pub use crate::tokens::Token;