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():