fixup! 73917a033374a26c70dce571639e43ecfc09434d
This commit is contained in:
parent
c6e971d7e0
commit
5e3d0e9666
1 changed files with 11 additions and 1 deletions
12
src/block.rs
12
src/block.rs
|
@ -513,7 +513,7 @@ mod test {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn block_code_block_seq() {
|
fn block_code_block() {
|
||||||
test_block!(
|
test_block!(
|
||||||
concat!(
|
concat!(
|
||||||
"```` lang\n",
|
"```` lang\n",
|
||||||
|
@ -539,5 +539,15 @@ mod test {
|
||||||
"```",
|
"```",
|
||||||
3,
|
3,
|
||||||
);
|
);
|
||||||
|
test_block!(
|
||||||
|
concat!(
|
||||||
|
"``` no space in lang specifier\n",
|
||||||
|
"l0\n",
|
||||||
|
"```\n", //
|
||||||
|
),
|
||||||
|
Block::Leaf(Paragraph),
|
||||||
|
"",
|
||||||
|
3,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue