Packages

A simple gleam library for creating tables based on columns and rows.

Current section

Files

Jump to
fabulous include fabulous_Table.hrl
Raw

include/fabulous_Table.hrl

-record(table, {
cols :: list(binary()),
rows :: list(list(binary())),
max_width :: integer(),
column_alignment :: binary(),
row_alignment :: binary()
}).