table-layout-0.5.0.0: src/Text/Layout/Table/Internal.hs
module Text.Layout.Table.Internal where
import Data.Default.Class
import Text.Layout.Table.Position
import Text.Layout.Table.Primitives.Basic
-- | Groups rows together, which are not seperated from each other.
data RowGroup = RowGroup
{ rows :: [[String]]
}
-- | Specifies how a header is layout, by omitting the cut mark it will use the
-- one specified in the 'Text.Layout.Primitives.Column.ColSpec' like the other
-- cells in that column.
data HeaderColSpec = HeaderColSpec (Position H) (Maybe CutMark)