Start the plain list module.

This commit is contained in:
Tom Alexander
2022-12-18 03:29:01 -05:00
parent f39319702c
commit 76b2325486
3 changed files with 20 additions and 0 deletions

8
src/parser/plain_list.rs Normal file
View File

@@ -0,0 +1,8 @@
use super::error::Res;
use super::token::PlainList;
use super::Context;
pub fn plain_list<'r, 's>(context: Context<'r, 's>, i: &'s str) -> Res<&'s str, PlainList<'s>> {
// todo
todo!()
}