From 0d8db637824fea457ce765f0aeb70563209024c1 Mon Sep 17 00:00:00 2001 From: David Morilla Cabello Date: Fri, 28 Mar 2025 02:43:07 +0100 Subject: [PATCH] Improve appended toctrees Ensure that the appended toctree for childrens .md are separated from the parent .md text Signed-off-by: David Morilla Cabello --- build_multiversion.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_multiversion.py b/build_multiversion.py index 3662bc108c..583b9630fb 100644 --- a/build_multiversion.py +++ b/build_multiversion.py @@ -143,7 +143,8 @@ def handle_file_url_rename(file_path, file_url): child_md.append(f"{child['title']} <{file_url}>") with open(version_tmp_dir / new_file_path, "a") as ind_f: - ind_f.write("```") + # Include {toctree} for children below the .md text + ind_f.write("\n```") ind_f.write("\n".join(toc_directives) + "\n") ind_f.writelines("\n".join(child_md) + "\n") ind_f.write("```\n")