Print ASCII tables to the terminal.
``` use ascii_table::AsciiTable;
let asciitable = AsciiTable::default(); let data = vec![&[1, 2, 3], &[4, 5, 6], &[7, 8, 9]]; asciitable.print(data); // ┌───┬───┬───┐ // │ 1 │ 2 │ 3 │ // │ 4 │ 5 │ 6 │ // │ 7 │ 8 │ 9 │ // └───┴───┴───┘ ```
``` use std::fmt::Display; use ascii_table::{AsciiTable, Align};
let mut asciitable = AsciiTable::default(); asciitable.setmaxwidth(26); asciitable.column(0).setheader("H1").setalign(Align::Left); asciitable.column(1).setheader("H2").setalign(Align::Center); asciitable.column(2).setheader("H3").set_align(Align::Right);
let data: Vec
auto_table_width
: Sets the default max width of the ascii table to the width of the terminal.color_codes
: Correctly calculates the width of a string when terminal color codes are present
(like those from the colorful
crate).wide_characters
: Correctly calculates the width of a string when wide characters are present
(like emoli's).