From 824c8bbedf58de9bfbfda92df9f1e0cb24c3219b Mon Sep 17 00:00:00 2001 From: tligui_y Date: Fri, 18 Jul 2025 10:43:15 +0200 Subject: [PATCH] Update json_to_md.py --- json_to_md.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/json_to_md.py b/json_to_md.py index 67f48d24..5665b200 100644 --- a/json_to_md.py +++ b/json_to_md.py @@ -232,14 +232,14 @@ def json_to_md_nested(json_path, md_path, runtime_params=None): body_coll += "- **Details:** `None`\n" # ✅ Mettre absolument tout dans
, même si vide - folder_body += f"
\n" + folder_body += f" -
\n" folder_body += f" {emoji} {short_node}\n\n" for line in body_coll.strip().splitlines(): folder_body += f" {line}\n" folder_body += f"
\n\n" # ✅ Encapsuler tout dans un bloc parent (ci-reports etc.) - f.write(f"-
\n") + f.write(f"
\n") f.write(f" {folder_emoji} {folder} ({len(collectors)} tests)\n\n") for line in (folder_body + body_collectors).strip().splitlines(): f.write(f" {line}\n")