Hmmm it seems to be building.

This commit is contained in:
Tom Alexander
2022-07-16 21:32:23 -04:00
parent 99b19410c5
commit 8357837571
4 changed files with 44 additions and 31 deletions

View File

@@ -133,7 +133,7 @@ pub fn paragraph(input: &str) -> Res<&str, (Vec<TextElement>, &str)> {
todo!()
}
fn paragraph_end(input: &str) -> Res<&str, &str> {
pub fn paragraph_end(input: &str) -> Res<&str, &str> {
recognize(tuple((map(line_break, TextElement::LineBreak), blank_line)))(input)
}