table-layout-0.5.2.0: Layout text as grid or table.

Safe HaskellSafe
LanguageHaskell2010

Text.Layout.Table.Internal

Synopsis

Documentation

newtype RowGroup Source

Groups rows together, which are not seperated from each other.

Constructors

RowGroup 

Fields

rows :: [[String]]
 

rowGroup :: [Row String] -> RowGroup Source

Construct a row group from a list of rows.

data HeaderColSpec Source

Specifies how a header is layout, by omitting the cut mark it will use the one specified in the ColSpec like the other cells in that column.

Instances

Default HeaderColSpec Source

Header columns are usually centered.

type Row a = [a] Source

An alias for lists, conceptually for values with a horizontal arrangement.

type Col a = [a] Source

An alias for lists, conceptually for values with a vertical arrangement.