Initial setup for the parser.

This commit is contained in:
Tom Alexander
2022-07-15 23:26:49 -04:00
commit ee9e6297a6
13 changed files with 350 additions and 0 deletions

7
src/parser/mod.rs Normal file
View File

@@ -0,0 +1,7 @@
mod bold_parser;
mod failable_sequence;
mod nom_context;
mod parser_with_context;
mod text;
mod text_element_parser;
pub use text::paragraph;