From 3ebc064ab28024d4f4b17333dcf0348fe5158e22 Mon Sep 17 00:00:00 2001 From: Laren Spear Date: Mon, 30 Jun 2025 16:41:03 -0700 Subject: [PATCH] Quarto (qmd) support --- markdown-link-check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown-link-check b/markdown-link-check index 3849a012..4b494dce 100755 --- a/markdown-link-check +++ b/markdown-link-check @@ -102,7 +102,7 @@ function loadAllMarkdownFiles(rootFolder = '.') { const fullPath = path.join(rootFolder, file); if (fs.lstatSync(fullPath).isDirectory()) { files.push(...loadAllMarkdownFiles(fullPath)); - } else if (fullPath.endsWith('.md')) { + } else if (fullPath.endsWith('.md') || fullPath.endsWith('.qmd')) { files.push(fullPath); } });