rtf_parser/
lib.rs

1// RTF parser for Text Editor
2// This library supports RTF version 1.9.1
3// Specification is available here : https://dokumen.tips/documents/rtf-specification.html
4// Explanations on specification here : https://www.oreilly.com/library/view/rtf-pocket-guide/9781449302047/ch01.html
5
6#![allow(irrefutable_let_patterns)]
7
8// Public API of the crate
9pub mod document;
10pub mod header;
11pub mod lexer;
12pub mod paragraph;
13pub mod parser;
14pub mod tokens;
15mod utils;
16
17// Re-export all the symbols to the global rtf-parser namespace
18pub use document::*;
19pub use header::*;
20pub use lexer::*;
21pub use paragraph::*;
22pub use parser::*;
23pub use tokens::*;