From ac8d53e3750d08f27d4498b3fff48dc7c0f8cf0b Mon Sep 17 00:00:00 2001 From: tligui_y Date: Sat, 19 Jul 2025 19:17:25 +0200 Subject: [PATCH] Update json_to_md.py --- json_to_md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json_to_md.py b/json_to_md.py index d3b46000..a6513f3a 100644 --- a/json_to_md.py +++ b/json_to_md.py @@ -131,7 +131,7 @@ def make_test_block(test, status, emoji, level, runtime_params): body += f"- **{phase.capitalize()} Phase**\n" for field, value in test[phase].items(): block = stringify(value) - body += f" - **{field}:**\n\n```python\n{block}\n```\n\n" + body += f" **{field}:**\n\n```python\n{block}\n```\n\n" # Formatage final avec indentation cohérente body_content = "\n".join(f" {line}" for line in body.strip().splitlines())