From e3f0aaefdf3bb5a9e10825301fa7b2677d5d25d7 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sun, 19 Mar 2023 18:28:59 -0400 Subject: [PATCH] Add TODO. --- src/parser/plain_list.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parser/plain_list.rs b/src/parser/plain_list.rs index c579f5b8..cfe05d8d 100644 --- a/src/parser/plain_list.rs +++ b/src/parser/plain_list.rs @@ -114,6 +114,7 @@ pub fn item_end<'r, 's>(context: Context<'r, 's>, i: &'s str) -> Res<&'s str, &' let item_matcher = parser_with_context!(item)(&context); let line_indented_matcher = parser_with_context!(line_indented_lte)(&context); alt(( + // TODO: This should be two blank lines and it ends ALL of the items paragraph_end, recognize(tuple((line_ending, peek(line_indented_matcher)))), // TODO: Do we still need the item_matcher entry here? If we remove it, then child items should become part of the body of the parent item which would match the description on https://orgmode.org/worg/org-syntax.html