From cbfdee82521505d0360225577d885a925251998e Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Wed, 13 Nov 2024 16:46:26 +0100 Subject: [PATCH] Fix doc build --- conf.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/conf.py b/conf.py index 50d175c..2128272 100644 --- a/conf.py +++ b/conf.py @@ -3,7 +3,16 @@ project = html_title = "AiiDA Enhancement Proposals" author = "The AiiDA team" -extensions = ["myst_parser", "sphinx_external_toc"] +extensions = [ + "myst_parser", + "sphinx_external_toc", +] + +myst_enable_extensions = [ + "linkify", + "anchors", +] + exclude_patterns = [".github", ".tox", ".vscode", "_build"] external_toc_exclude_missing = True html_theme = "furo"