From 2d3ac4830ab4d60bd15b0b176c911b1dbb870c1f Mon Sep 17 00:00:00 2001 From: Erik Jaegervall Date: Mon, 10 Jun 2024 15:31:04 +0200 Subject: [PATCH] Address bug in check-markdown-link It currently gives an error for links containing %2F, like: https://github.com/eclipse-kuksa/kuksa-python-sdk/pkgs/container/kuksa-python-sdk%2Fkuksa-client Probably same error as reported in https://github.com/tcort/markdown-link-check/issues/264 Proposed workaround is to exclude links with % from check --- check-markdown/config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/check-markdown/config.json b/check-markdown/config.json index e49cae2..37c5f74 100644 --- a/check-markdown/config.json +++ b/check-markdown/config.json @@ -2,6 +2,9 @@ "ignorePatterns": [ { "pattern": "^#" + }, + { + "pattern": "%" } ] }