table-layout-0.9.0.2: Format tabular data as grid or table.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Text.Layout.Table.Spec.CutMark

Synopsis

Documentation

data CutMark Source #

Specifies how the place looks where a String has been cut. Note that the cut mark may be cut itself to fit into a column.

Instances

Instances details
Default CutMark Source #

A single ellipsis unicode character is used to show cut marks.

Instance details

Defined in Text.Layout.Table.Spec.CutMark

Methods

def :: CutMark #

doubleCutMark :: String -> String -> CutMark Source #

Specify two different cut marks, one for cuts on the left and one for cuts on the right.

singleCutMark :: String -> CutMark Source #

Use the cut mark on both sides by reversing it on the other.

noCutMark :: CutMark Source #

Don't show any cut mark when text is cut.