2023-04-21 23:02:16 +00:00
|
|
|
use super::clock::clock;
|
2023-04-21 20:10:56 +00:00
|
|
|
use super::comment::comment;
|
2023-04-22 00:22:31 +00:00
|
|
|
use super::diary_sexp::diary_sexp;
|
2023-04-21 20:10:56 +00:00
|
|
|
use super::drawer::drawer;
|
|
|
|
use super::dynamic_block::dynamic_block;
|
|
|
|
use super::element::Element;
|
2023-04-22 02:04:22 +00:00
|
|
|
use super::fixed_width_area::fixed_width_area;
|
2023-04-21 20:10:56 +00:00
|
|
|
use super::footnote_definition::footnote_definition;
|
|
|
|
use super::greater_block::greater_block;
|
2023-04-22 02:23:59 +00:00
|
|
|
use super::horizontal_rule::horizontal_rule;
|
2023-04-22 02:33:10 +00:00
|
|
|
use super::keyword::keyword;
|
2023-04-21 21:40:49 +00:00
|
|
|
use super::lesser_block::comment_block;
|
|
|
|
use super::lesser_block::example_block;
|
|
|
|
use super::lesser_block::export_block;
|
|
|
|
use super::lesser_block::src_block;
|
|
|
|
use super::lesser_block::verse_block;
|
2023-04-21 20:10:56 +00:00
|
|
|
use super::paragraph::paragraph;
|
|
|
|
use super::plain_list::plain_list;
|
2023-04-22 04:09:14 +00:00
|
|
|
use super::source::SetSource;
|
2023-04-22 03:54:54 +00:00
|
|
|
use super::util::get_consumed;
|
|
|
|
use super::util::maybe_consume_trailing_whitespace_if_not_exiting;
|
2023-04-22 03:55:18 +00:00
|
|
|
|
2023-04-21 20:10:56 +00:00
|
|
|
use super::Context;
|
2023-04-21 22:36:01 +00:00
|
|
|
use crate::error::Res;
|
2023-04-21 20:10:56 +00:00
|
|
|
use crate::parser::parser_with_context::parser_with_context;
|
|
|
|
use crate::parser::table::org_mode_table;
|
|
|
|
use nom::branch::alt;
|
|
|
|
use nom::combinator::map;
|
2023-04-22 04:55:31 +00:00
|
|
|
use nom::combinator::verify;
|
2023-04-22 03:36:38 +00:00
|
|
|
use nom::multi::many0;
|
2023-04-21 20:10:56 +00:00
|
|
|
|
2023-04-22 04:55:31 +00:00
|
|
|
pub fn element(
|
|
|
|
can_be_paragraph: bool,
|
|
|
|
) -> impl for<'r, 's> Fn(Context<'r, 's>, &'s str) -> Res<&'s str, Element<'s>> {
|
|
|
|
move |context: Context, input: &str| {
|
|
|
|
let plain_list_matcher = parser_with_context!(plain_list)(context);
|
|
|
|
let greater_block_matcher = parser_with_context!(greater_block)(context);
|
|
|
|
let dynamic_block_matcher = parser_with_context!(dynamic_block)(context);
|
|
|
|
let footnote_definition_matcher = parser_with_context!(footnote_definition)(context);
|
|
|
|
let comment_matcher = parser_with_context!(comment)(context);
|
|
|
|
let drawer_matcher = parser_with_context!(drawer)(context);
|
|
|
|
let table_matcher = parser_with_context!(org_mode_table)(context);
|
|
|
|
let verse_block_matcher = parser_with_context!(verse_block)(context);
|
|
|
|
let comment_block_matcher = parser_with_context!(comment_block)(context);
|
|
|
|
let example_block_matcher = parser_with_context!(example_block)(context);
|
|
|
|
let export_block_matcher = parser_with_context!(export_block)(context);
|
|
|
|
let src_block_matcher = parser_with_context!(src_block)(context);
|
|
|
|
let clock_matcher = parser_with_context!(clock)(context);
|
|
|
|
let diary_sexp_matcher = parser_with_context!(diary_sexp)(context);
|
|
|
|
let fixed_width_area_matcher = parser_with_context!(fixed_width_area)(context);
|
|
|
|
let horizontal_rule_matcher = parser_with_context!(horizontal_rule)(context);
|
|
|
|
let keyword_matcher = parser_with_context!(keyword)(context);
|
|
|
|
let paragraph_matcher = parser_with_context!(paragraph)(context);
|
|
|
|
let (remaining, mut affiliated_keywords) = many0(keyword_matcher)(input)?;
|
|
|
|
let (remaining, mut element) = match alt((
|
|
|
|
map(plain_list_matcher, Element::PlainList),
|
|
|
|
map(greater_block_matcher, Element::GreaterBlock),
|
|
|
|
map(dynamic_block_matcher, Element::DynamicBlock),
|
|
|
|
map(footnote_definition_matcher, Element::FootnoteDefinition),
|
|
|
|
map(comment_matcher, Element::Comment),
|
|
|
|
map(drawer_matcher, Element::Drawer),
|
|
|
|
map(table_matcher, Element::Table),
|
|
|
|
map(verse_block_matcher, Element::VerseBlock),
|
|
|
|
map(comment_block_matcher, Element::CommentBlock),
|
|
|
|
map(example_block_matcher, Element::ExampleBlock),
|
|
|
|
map(export_block_matcher, Element::ExportBlock),
|
|
|
|
map(src_block_matcher, Element::SrcBlock),
|
|
|
|
map(clock_matcher, Element::Clock),
|
|
|
|
map(diary_sexp_matcher, Element::DiarySexp),
|
|
|
|
map(fixed_width_area_matcher, Element::FixedWidthArea),
|
|
|
|
map(horizontal_rule_matcher, Element::HorizontalRule),
|
|
|
|
map(
|
|
|
|
verify(paragraph_matcher, |_p| can_be_paragraph),
|
|
|
|
Element::Paragraph,
|
|
|
|
),
|
|
|
|
))(remaining)
|
|
|
|
{
|
|
|
|
the_ok @ Ok(_) => the_ok,
|
|
|
|
Err(_) => {
|
|
|
|
affiliated_keywords.clear();
|
|
|
|
map(keyword_matcher, Element::Keyword)(input)
|
|
|
|
}
|
|
|
|
}?;
|
2023-04-21 20:10:56 +00:00
|
|
|
|
2023-04-22 04:55:31 +00:00
|
|
|
let (remaining, _trailing_ws) =
|
|
|
|
maybe_consume_trailing_whitespace_if_not_exiting(context, remaining)?;
|
2023-04-22 03:54:54 +00:00
|
|
|
|
2023-04-22 04:55:31 +00:00
|
|
|
let source = get_consumed(input, remaining);
|
|
|
|
element.set_source(source);
|
2023-04-22 03:54:54 +00:00
|
|
|
|
2023-04-22 04:55:31 +00:00
|
|
|
Ok((remaining, element))
|
|
|
|
}
|
2023-04-21 20:10:56 +00:00
|
|
|
}
|