3 releases (breaking)
Uses new Rust 2024
new 0.3.0 | May 10, 2025 |
---|---|
0.2.0 | Apr 26, 2025 |
0.1.0 | Apr 26, 2025 |
#122 in Value formatting
318 downloads per month
9KB
152 lines
Markdown Table Formatter
CLI
$ cat table.md
w | x | y | z
---|:---|---:|:---:
1 | 1 | 1 | 1
2 | 4 | 16 | 256
3 | 9 | 81 | 6561
4 | 16 | 256 | 65536
$ mtf table.md
| w | x | y | z |
|----|:---|----:|:-----:|
| 1 | 1 | 1 | 1 |
| 2 | 4 | 16 | 256 |
| 3 | 9 | 81 | 6561 |
| 4 | 16 | 256 | 65536 |
Library
let input = "\
w | x | y | z
---|:---|---:|:---:
1 | 1 | 1 | 1
2 | 4 | 16 | 256
3 | 9 | 81 | 6561
4 | 16 | 256 | 65536
";
let output = "\
| w | x | y | z |
|----|:---|----:|:-----:|
| 1 | 1 | 1 | 1 |
| 2 | 4 | 16 | 256 |
| 3 | 9 | 81 | 6561 |
| 4 | 16 | 256 | 65536 |
";
assert_eq!(mtf::process(input).unwrap(), output);
Dependencies
~5–15MB
~205K SLoC