From 50b97b01d547305900d140abb9b5ff1a57adf7f0 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Wed, 14 Aug 2024 15:26:53 +0200 Subject: [PATCH] lint: disable warning for reference links with shortcut syntax The shortcut syntax is used by GitHub-style alerts and trigger a lint warning. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- .markdownlint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.markdownlint.json b/.markdownlint.json index 29ecb5426f..58ab5995dd 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -16,7 +16,7 @@ "ol-prefix": {"style": "ordered"}, "no-reversed-links": true, "reference-links-images": { - "shortcut_syntax": true + "shortcut_syntax": false }, "fenced-code-language": true, "table-pipe-style": true,