From eccb4df1b43e6f75bece8bf981726e262f3a62a7 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Wed, 17 Jan 2024 16:07:16 -0500 Subject: [PATCH] Fix inter-page links with MyST options in docs. Signed-off-by: Ben Smith --- docs/source/conf.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 483c4d85ed9..45cb7fbe213 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -113,4 +113,8 @@ def setup(app): html_static_path = ['_static'] -html_add_permalinks = True \ No newline at end of file +html_add_permalinks = True + +# -- MyST-specific Options ------------------------------------------------- +# https://myst-parser.readthedocs.io/en/latest/configuration.html#sphinx-config-options +myst_all_links_external = True \ No newline at end of file