From 2f811d41c8bfb7f24af51823e51e05e326ebe807 Mon Sep 17 00:00:00 2001 From: Pier-Jean Malandrino Date: Wed, 29 Apr 2026 14:12:01 +0200 Subject: [PATCH] fix(docs): also tolerate links.not_found for cross-tree audit links The previous tweak only set unrecognized_links: info but the actual warnings are 'target X is not found among documentation files' which is the not_found validator. Setting both to info so strict-mode build passes on the audit reports' source-file references. --- mkdocs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 2f0d076..0b5ff19 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -78,8 +78,9 @@ validation: absolute_links: info # Audit reports (audit/reports/release-X.Y.Z/) reference repo source # files (e.g. `[file.py:line](file.py:line)`) by design — they're read - # alongside the repo, not as standalone docs. Downgrade to info so - # strict-mode builds don't fail on these intentional cross-tree links. + # alongside the repo, not as standalone docs. Downgrade these to info + # so strict-mode builds don't fail on intentional cross-tree links. + not_found: info unrecognized_links: info markdown_extensions: