Versions in this module Expand all Collapse all v0 v0.0.1 Dec 11, 2023 Changes in this version + type Cell struct + func NewCell(text string, c *color.Color) *Cell + func (t *Cell) Justify(mode JustifyMode) + func (t *Cell) Len() int + func (t *Cell) Pad(totalLen int) string + type ColumnWidthMode int + const Average + const Minimum + type JustifyMode int + const JustifyCenter + const JustifyLeft + const JustifyRight + type Table struct + func New() *Table + func (t *Table) AddRow(columns ...interface{}) + func (t *Table) Render() string + func (t *Table) SetColumnWidthMode(x int, mode ColumnWidthMode) + func (t *Table) SetHeader(columns ...interface{})