From 40107b93800e5b75edbac698316e2dea32a41805 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 9 Nov 2025 08:40:26 +0100 Subject: [PATCH] feat: format partials codeblock as outputs --- build_helpers/create_command_partials.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_helpers/create_command_partials.py b/build_helpers/create_command_partials.py index 13dc603d1..dc69117b7 100644 --- a/build_helpers/create_command_partials.py +++ b/build_helpers/create_command_partials.py @@ -4,7 +4,7 @@ from pathlib import Path def _write_partial_file(filename: str, content: str): with Path(filename).open("w") as f: - f.write(f"```\n{content}\n```\n") + f.write(f"``` output\n{content}\n```\n") def extract_command_partials():