fixup! parser: impl link references

This commit is contained in:
Noah Hellman 2023-01-17 18:05:34 +01:00
parent 6c5fcbf57d
commit ecf49100f4
2 changed files with 43 additions and 1 deletions

View file

@ -730,6 +730,10 @@ mod test {
#[test]
fn block_link_definition() {
test_block!("[tag]: url\n", Block::Leaf(LinkDefinition), "tag", 1);
}
#[test]
fn block_link_definition_multiline() {
test_block!(
concat!(
"[tag]: uuu\n",