diff --git a/json_to_md.py b/json_to_md.py
index 367c445..6a250d4 100644
--- a/json_to_md.py
+++ b/json_to_md.py
@@ -348,9 +348,9 @@ def run_pytest_and_generate_banner_with_logs(md_path, log_path, exit_code):
full_banner = (
banner +
"\n📋 Short test summary info
\n\n" +
- "```python\n" + "".join(short_summary_lines) + "```\n \n\n" +
+ "~~~~python\n" + "".join(short_summary_lines) + "~~~~\n\n\n" +
"\n🪵 Full raw pytest log
\n\n" +
- "```python\n" + "".join(log_lines) + "```\n \n\n" +
+ "~~~~python\n" + "".join(log_lines) + "~~~~\n\n\n" +
"---\n\n"
)