Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf_tests: Right-align numeric metrics in markdown tables
Right-align metrics columns in markdown output for better number comparison. Previously, metrics were left-aligned in markdown tables but right-aligned in stdout, making it difficult to visually compare numbers. The change adds colons to the right of hyphens in the header row (e.g. `|---:|`) to right-align entire columns. While this affects both headers and data cells, the improved readability of numeric values outweighs the minor tradeoff of right-aligned headers. In short: - Uses `column::print_text` with ":>" alignment for consistent formatting - Maintains existing stdout_printer right alignment - Updates `markdown_printer` alignment to match stdout behavior Signed-off-by: Kefu Chai <[email protected]>
- Loading branch information