Disable building the old combinator.

This commit is contained in:
Tom Alexander 2023-03-23 18:01:33 -04:00
parent 6042c44514
commit ee60cf40dd
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 6 additions and 6 deletions

View File

@ -1,19 +1,19 @@
mod bold;
mod combinator;
// mod bold;
// mod combinator;
mod document;
mod element;
mod error;
mod greater_element;
mod lesser_element;
mod link;
// mod link;
mod list;
mod object;
mod paragraph;
// mod paragraph;
mod parser_context;
mod parser_with_context;
mod plain_list;
// mod plain_list;
mod source;
mod text;
// mod text;
mod token;
mod util;
type Context<'r, 's> = &'r parser_context::ContextTree<'r, 's>;