From 0072289c4ee7a2dea06b5c47e91e49fda8bd2fa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Tue, 2 Apr 2024 02:25:21 -0400 Subject: [PATCH] Explicitly tell myst to accept internal links to multiple levels of headings Some dumb change requires this to be explicit now. --- conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf.py b/conf.py index 5b7adff..c8c829a 100644 --- a/conf.py +++ b/conf.py @@ -47,6 +47,8 @@ extensions = [ 'sphinx_rtd_theme', ] +myst_heading_anchors = 5 + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']