static_table 0.8.0

Library creates pretty tables at compiler time
Documentation
use static_table::static_table;

use tabled::assert::test_table;

test_table!(
    static_table_with_margin,
    static_table!(
        [[1, 2, 123], [1, 2, 123], [1, 2, 123]],
        MARGIN = "1, 2, 3, 4"
    ),
    "                  "
    "                  "
    "                  "
    " +---+---+-----+  "
    " | 1 | 2 | 123 |  "
    " +---+---+-----+  "
    " | 1 | 2 | 123 |  "
    " +---+---+-----+  "
    " | 1 | 2 | 123 |  "
    " +---+---+-----+  "
    "                  "
    "                  "
    "                  "
    "                  "
);