Move in_section to a util module.

This commit is contained in:
Tom Alexander
2022-12-18 03:18:43 -05:00
parent 6404e5f50e
commit 8211e1043f
5 changed files with 19 additions and 16 deletions

View File

@@ -1,5 +1,6 @@
mod bold;
mod combinator;
mod document;
mod error;
mod link;
mod list;
@@ -7,7 +8,7 @@ mod paragraph;
mod parser_context;
mod parser_with_context;
mod text;
mod document;
mod token;
mod util;
pub use document::document;
type Context<'r, 's> = &'r parser_context::ContextTree<'r, 's>;