Expand description
§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);
Functions§
- process
- Process markdown content