wip
This commit is contained in:
parent
680e8ef65f
commit
5d601c0fff
1 changed files with 77 additions and 57 deletions
54
src/block.rs
54
src/block.rs
|
@ -85,14 +85,20 @@ impl<'s> Parser<'s> {
|
||||||
})
|
})
|
||||||
.count();
|
.count();
|
||||||
let lines = &mut lines[blanklines..];
|
let lines = &mut lines[blanklines..];
|
||||||
Block::parse(lines.iter().map(|sp| sp.of(self.src))).map_or(0, |(kind, span, len)| {
|
Block::parse(lines.iter().map(|sp| sp.of(self.src))).map_or(
|
||||||
|
blanklines,
|
||||||
|
|(kind, span, len)| {
|
||||||
let start = lines.get(0).map(|sp| sp.start()).unwrap();
|
let start = lines.get(0).map(|sp| sp.start()).unwrap();
|
||||||
let span = span.translate(start);
|
let span = span.translate(start);
|
||||||
match &kind {
|
match &kind {
|
||||||
Block::Leaf(_) => {
|
Block::Leaf(l) => {
|
||||||
self.tree.enter(kind, span);
|
self.tree.enter(kind, span);
|
||||||
lines[0] = lines[0].with_start(span.end());
|
lines[0] = lines[0].with_start(span.end());
|
||||||
for line in lines.iter().take(len) {
|
let len = match l {
|
||||||
|
CodeBlock { .. } => len - 2,
|
||||||
|
_ => len,
|
||||||
|
};
|
||||||
|
for line in &lines[0..len] {
|
||||||
self.tree.elem(Atom::Inline, *line);
|
self.tree.elem(Atom::Inline, *line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -130,7 +136,8 @@ impl<'s> Parser<'s> {
|
||||||
}
|
}
|
||||||
self.tree.exit();
|
self.tree.exit();
|
||||||
blanklines + len
|
blanklines + len
|
||||||
})
|
},
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,12 +146,13 @@ impl Block {
|
||||||
fn parse<'b, I: Iterator<Item = &'b str>>(mut lines: I) -> Option<(Block, Span, usize)> {
|
fn parse<'b, I: Iterator<Item = &'b str>>(mut lines: I) -> Option<(Block, Span, usize)> {
|
||||||
lines.next().map(|l| {
|
lines.next().map(|l| {
|
||||||
let (kind, sp) = Block::start(l);
|
let (kind, sp) = Block::start(l);
|
||||||
let line_count = 1
|
let has_end_delimiter = matches!(
|
||||||
+ lines.take_while(|l| kind.continues(l)).count()
|
|
||||||
+ usize::from(matches!(
|
|
||||||
kind,
|
kind,
|
||||||
Self::Leaf(CodeBlock { .. }) | Self::Container(Div { .. })
|
Self::Leaf(CodeBlock { .. }) | Self::Container(Div { .. })
|
||||||
));
|
);
|
||||||
|
let line_count = 1
|
||||||
|
+ lines.take_while(|l| kind.continues(l)).count()
|
||||||
|
+ usize::from(has_end_delimiter);
|
||||||
(kind, sp, line_count)
|
(kind, sp, line_count)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -195,7 +203,7 @@ impl Block {
|
||||||
':' => Self::Container(Div { fence_length }),
|
':' => Self::Container(Div { fence_length }),
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
},
|
},
|
||||||
Span::by_len(start, line.len()),
|
Span::by_len(start, fence_length.into()),
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -361,23 +369,35 @@ mod test {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
#[test]
|
#[test]
|
||||||
fn parse_code_block() {
|
fn parse_code_block() {
|
||||||
test_parse!(
|
test_parse!(
|
||||||
concat!(
|
concat!(
|
||||||
"```lang\n",
|
"```\n",
|
||||||
"l0\n",
|
"l0\n",
|
||||||
"l1\n",
|
|
||||||
"```", //
|
"```", //
|
||||||
),
|
),
|
||||||
(Event::Enter(Leaf(CodeBlock { fence_length: 3 })), "```lang\n"),
|
(Enter(Leaf(CodeBlock { fence_length: 3 })), "```"),
|
||||||
(Event::Element(Inline), "l0\n"),
|
(Element(Inline), "\n"),
|
||||||
(Event::Element(Inline), "l1\n"),
|
(Element(Inline), "l0\n"),
|
||||||
(Event::Exit, "```lang\n"),
|
(Exit, "```"),
|
||||||
|
);
|
||||||
|
test_parse!(
|
||||||
|
concat!(
|
||||||
|
"````lang\n",
|
||||||
|
"l0\n",
|
||||||
|
"```\n",
|
||||||
|
" l1\n",
|
||||||
|
"````", //
|
||||||
|
),
|
||||||
|
(Enter(Leaf(CodeBlock { fence_length: 4 })), "````"),
|
||||||
|
(Element(Inline), "lang\n"),
|
||||||
|
(Element(Inline), "l0\n"),
|
||||||
|
(Element(Inline), "```\n"),
|
||||||
|
(Element(Inline), " l1\n"),
|
||||||
|
(Exit, "````"),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
macro_rules! test_block {
|
macro_rules! test_block {
|
||||||
($src:expr, $kind:expr, $str:expr, $len:expr $(,)?) => {
|
($src:expr, $kind:expr, $str:expr, $len:expr $(,)?) => {
|
||||||
|
|
Loading…
Reference in a new issue