fix: should only check valid fragments in markdown (.md) files

This commit is contained in:
Théo LUDWIG 2024-01-31 00:10:41 +01:00
parent 5c39afbe20
commit e20ee54b05
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
5 changed files with 25 additions and 0 deletions

View File

@ -97,6 +97,10 @@ const customRule = {
continue
}
if (!url.pathname.endsWith(".md")) {
continue
}
const fileContent = fs.readFileSync(url, { encoding: "utf8" })
const headings = getMarkdownHeadings(fileContent)
const idOrAnchorNameHTMLFragments =

View File

@ -0,0 +1,9 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Awesome</title>
</head>
<body></body>
</html>

View File

@ -0,0 +1,7 @@
# Valid
[Link fragment HTML](./awesome.html#existing-heading)
[Link fragment TXT](./abc.txt#existing-heading)
[Link fragment Image](../../image.png#existing-heading)

View File

@ -123,6 +123,11 @@ test("ensure the rule validates correctly", async (t) => {
fixturePath:
"test/fixtures/valid/existing-heading-fragment/existing-heading-fragment.md",
},
{
name: "should only parse markdown files for fragments checking",
fixturePath:
"test/fixtures/valid/only-parse-markdown-files-for-fragments/only-parse-markdown-files-for-fragments.md",
},
{
name: "with an existing file",
fixturePath: "test/fixtures/valid/existing-file.md",