From 05c644234c4685378e334052231feeb9e1b9a742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Tue, 2 Apr 2024 02:46:40 -0400 Subject: [PATCH] Tell myst to ignore ambiguous :std:ref: :std:doc: references at least, hope it only ignors it when it is identical ref and doc (title is same as filename for the same file) --- conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conf.py b/conf.py index c8c829a..0a47145 100644 --- a/conf.py +++ b/conf.py @@ -48,6 +48,7 @@ extensions = [ ] myst_heading_anchors = 5 +suppress_warnings = ["myst.xref_ambiguous"] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']