Move the text element parser into the text module.

This commit is contained in:
Tom Alexander
2022-12-18 03:11:56 -05:00
parent 46672b40b2
commit 4ac3a47deb
6 changed files with 34 additions and 31 deletions

View File

@@ -7,7 +7,7 @@ mod paragraph;
mod parser_context;
mod parser_with_context;
mod text;
mod text_element_parser;
mod document;
mod token;
pub use text_element_parser::document;
pub use document::document;
type Context<'r, 's> = &'r parser_context::ContextTree<'r, 's>;