9 releases (5 breaking)

0.6.1 Jul 1, 2023
0.6.0 Jun 27, 2023
0.5.1 Jun 10, 2023
0.4.0 Jun 3, 2023
0.1.0 May 13, 2023

#95 in Value formatting

Download history 323/week @ 2024-03-13 1163/week @ 2024-03-20 232/week @ 2024-03-27 415/week @ 2024-04-03 154/week @ 2024-04-10 172/week @ 2024-04-17 224/week @ 2024-04-24 2270/week @ 2024-05-01 1286/week @ 2024-05-08 384/week @ 2024-05-15 318/week @ 2024-05-22 103/week @ 2024-05-29 162/week @ 2024-06-05 987/week @ 2024-06-12 831/week @ 2024-06-19 641/week @ 2024-06-26

2,634 downloads per month

MIT/Apache

42KB
765 lines

Table Formatter

Repo   Crates-io Version   Language Count   License
Build Status   Commit Activity   Recent Downloads

This lib is used to format plain-text table.

Example

Code:

use itertools::Itertools;
use table_formatter::{cell, table};
use table_formatter::table::{Align, Border};
let table_header = vec![
    cell!("Cell Row").with_width(Some(20)),
    cell!("Left", align = Align::Left).with_width(Some(10)),
    cell!("Center", align = Align::Center).with_width(Some(10)),
    cell!("Right", align = Align::Right).with_width(Some(10)),
];
let table_cells = {
    let mut v = (0..=3_u8)
        .map(|_| {
            vec![
                cell!("Cell Row"),
                cell!("Left", align = Align::Left),
                cell!("Center", align = Align::Center),
                cell!("Right", align = Align::Right),
            ]
        })
        .collect_vec();
    v.push(cell!("Cross Cell!", align = Align::Center).with_span(3));
    v
};
let table = table! {
    table_header
    ---
    table_cells
    with Border::ALL
};
let mut buffer = vec![];
table.render(&mut buffer).unwrap();
println!("{}", String::from_utf8(buffer).unwrap());

Output:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
┃ Cell Row              Left          Center         Right ┃
┃━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┃
┃ Cell Row              Left          Center         Right ┃
┃ Cell Row              Left          Center         Right ┃
┃ Cell Row              Left          Center         Right ┃
┃ Cell Row              Left          Center         Right ┃
┃                       Cross Cell!                        ┃
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Actually the border of the table is bold, but it cannot be rendered in markdown.

Future Plan

Waiting for report :)

Change Log

V0.6.0

  • Changed the api of formatter, and add a macro wrapper for them.
  • Added documentations.

If you are using the formatter, you just need to change your vec!s into fmt!s.

V0.5.1

This version is yanked.

V0.5.0

New features

  • Add render target: Markdown.
  • Add cross-cell support.
  • Add macro support.

Warning

This version is Completely Incompatible with previous versions.

License

MIT or Apache-2.0

Dependencies

~0.8–11MB
~80K SLoC