From 13c83d9d85809fb7078ccb0f00aa3e596f37e1ba Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sun, 30 Oct 2022 03:49:50 -0400 Subject: [PATCH] Comment out line causing build problems so we can see if we introduce new build problems. --- src/parser/text_element_parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/text_element_parser.rs b/src/parser/text_element_parser.rs index b1267df3..c2b888ff 100644 --- a/src/parser/text_element_parser.rs +++ b/src/parser/text_element_parser.rs @@ -38,7 +38,7 @@ fn flat_text_element<'s, 'r>(i: &'s str, context: &'r NomContext) -> Res<&'s str } fn flat_bold<'s, 'r>(i: &'s str, context: &'r NomContext) -> Res<&'s str, TextElement<'s>> { - let new_context = context.without_bold(Rc::new(RefCell::new(recognize(bold_end)))); + // let new_context = context.without_bold(Rc::new(RefCell::new(recognize(bold_end)))); todo!() }