From 415fb44aceb2dad7392cea742b0f0fa2bf88a560 Mon Sep 17 00:00:00 2001 From: David Runge Date: Thu, 2 Nov 2023 16:30:06 +0100 Subject: [PATCH] Do not fail on footnotes directly following a heading Signed-off-by: David Runge --- book/source/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/book/source/conf.py b/book/source/conf.py index adaea50..db227e5 100644 --- a/book/source/conf.py +++ b/book/source/conf.py @@ -42,3 +42,7 @@ html_theme_options = { 'show_relbars': 'yes', 'show_powered_by': False, } + +# we want to circumvent obscure warnings about footnotes following a heading: +# https://github.com/executablebooks/MyST-Parser/issues/352 +myst_footnote_transition = False