Update json_to_md.py
Run Pytest with HTML and XML Test Reports / tests (push) Successful in 25s

This commit is contained in:
2025-07-16 23:11:26 +02:00
parent 85715b076e
commit f94603a54b
+1 -1
View File
@@ -217,7 +217,7 @@ def json_to_md_nested(json_path, md_path):
if key in EXCLUDED_KEYS or not data[key]:
continue
f.write(f"## 🔸 {key.capitalize()}\n\n")
f.write(f"## ⚠️ {key.capitalize()}\n\n")
for i, entry in enumerate(data[key], 1):
entry_body = "```\n"