Exclude empty links from md results (#153161)

These are technically valid links but we don't care about them since they take up no space
This commit is contained in:
Matt Bierner
2022-06-24 14:42:00 -07:00
committed by GitHub
parent f8663bce69
commit 8acfd0ae60
2 changed files with 12 additions and 1 deletions

View File

@@ -461,6 +461,17 @@ suite('Markdown: MdLinkComputer', () => {
new vscode.Range(5, 7, 5, 17),
]);
});
test('Should not include link with empty angle bracket', async () => {
const links = await getLinksForFile(joinLines(
`[](<>)`,
`[link](<>)`,
`[link](<> "text")`,
`[link](<> 'text')`,
`[link](<> (text))`,
));
assertLinksEqual(links, []);
});
});