Simulate trailing whitespace in empty greater blocks just like drawers.

This commit is contained in:
Tom Alexander
2023-04-22 21:45:18 -04:00
parent 4d4d30c597
commit 0ca6ce504f
18 changed files with 107 additions and 106 deletions

View File

@@ -1,4 +1,3 @@
use crate::error::Res;
use nom::branch::alt;
use nom::bytes::complete::is_not;
use nom::bytes::complete::tag;
@@ -14,6 +13,7 @@ use nom::multi::many_till;
use nom::sequence::tuple;
use super::Context;
use crate::error::Res;
use crate::parser::exiting::ExitClass;
use crate::parser::greater_element::TableRow;
use crate::parser::lesser_element::TableCell;
@@ -24,7 +24,6 @@ use crate::parser::parser_context::ExitMatcherNode;
use crate::parser::parser_with_context::parser_with_context;
use crate::parser::util::exit_matcher_parser;
use crate::parser::util::get_consumed;
use crate::parser::util::start_of_line;
use crate::parser::Table;