Implement the horizontal rule parser.

This commit is contained in:
Tom Alexander
2023-04-21 22:23:59 -04:00
parent 3fb0de97cf
commit bfffde3fdb
7 changed files with 77 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ use super::element::Element;
use super::fixed_width_area::fixed_width_area;
use super::footnote_definition::footnote_definition;
use super::greater_block::greater_block;
use super::horizontal_rule::horizontal_rule;
use super::lesser_block::comment_block;
use super::lesser_block::example_block;
use super::lesser_block::export_block;
@@ -51,6 +52,7 @@ pub fn non_paragraph_element<'r, 's>(
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);
alt((
map(plain_list_matcher, Element::PlainList),
map(greater_block_matcher, Element::GreaterBlock),
@@ -67,5 +69,6 @@ pub fn non_paragraph_element<'r, 's>(
map(clock_matcher, Element::Clock),
map(diary_sexp_matcher, Element::DiarySexp),
map(fixed_width_area_matcher, Element::FixedWidthArea),
map(horizontal_rule_matcher, Element::HorizontalRule),
))(input)
}