Move parsers for specific objects/elements to their own files.

The parsers are the most complicated part, so I want them in their own files. I am uncertain if I want to move their corresponding structs or just the parsers.
This commit is contained in:
Tom Alexander
2023-03-25 12:53:57 -04:00
parent 5d9771c3b6
commit 74fc440cbd
5 changed files with 113 additions and 96 deletions

View File

@@ -6,8 +6,10 @@ mod greater_element;
mod lesser_element;
mod list;
mod object;
mod paragraph;
mod parser_context;
mod parser_with_context;
mod plain_text;
mod source;
mod util;
pub use document::document;