From 13efe5d48ccc43cb3a8abb44391d4016c9b8515a Mon Sep 17 00:00:00 2001 From: Martin Nonnenmacher Date: Fri, 15 Sep 2023 11:16:51 +0200 Subject: [PATCH] ci: Exclude a URL link in Markdown from the link check In Docusaurus 2 links between different plugin instances need to be URL links which can only be resolved within the built website, but not in the raw files. Note that this is supposed to be fixed in Docusaurus 3 [1]. [1]: https://github.com/facebook/docusaurus/issues/6370 Signed-off-by: Martin Nonnenmacher --- mlc_config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mlc_config.json b/mlc_config.json index f8eff1606881..cc3241e77532 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -14,6 +14,9 @@ }, { "pattern": "^https://source.android.com/setup/develop/repo$" + }, + { + "pattern": "^../../tutorial/intro$" } ] }