Compare table formulas.
This commit is contained in:
@@ -58,7 +58,7 @@ pub fn org_mode_table<'b, 'g, 'r, 's>(
|
||||
let (remaining, (children, _exit_contents)) =
|
||||
many_till(org_mode_table_row_matcher, exit_matcher)(input)?;
|
||||
|
||||
let (remaining, _formulas) =
|
||||
let (remaining, formulas) =
|
||||
many0(parser_with_context!(table_formula_keyword)(context))(remaining)?;
|
||||
|
||||
// TODO: Consume trailing formulas
|
||||
@@ -68,6 +68,7 @@ pub fn org_mode_table<'b, 'g, 'r, 's>(
|
||||
remaining,
|
||||
Table {
|
||||
source: source.into(),
|
||||
formulas,
|
||||
children,
|
||||
},
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user