Initial structure for adding support for comments.

This commit is contained in:
Tom Alexander
2023-04-15 16:31:38 -04:00
parent cfcf6443ca
commit 1b10b197f2
5 changed files with 19 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
mod comment;
mod document;
mod element;
mod error;
@@ -24,6 +25,7 @@ pub use greater_element::FootnoteDefinition;
pub use greater_element::GreaterBlock;
pub use greater_element::PlainList;
pub use greater_element::PlainListItem;
pub use lesser_element::Comment;
pub use lesser_element::Paragraph;
pub use source::Source;
type Context<'r, 's> = &'r parser_context::ContextTree<'r, 's>;