pretty-ncols

A implementation of multi-column layout w/ Text.PrettyPrint

Latest on Hackage:0.1@rev:1

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed by Joe Fredette
Maintained by [email protected]

pretty-ncols allows for the following layouts to work nicely, so that: One Two Three 1 2 3 a b c can be written as: cols_rowMajor = map text $ [[One, Two, Three], ["1", "2","3"], ["a","b","c"]] cols_colMajor = transpose $ cols_rowMajors asColumns cols_rowMajor asColumns cols_colMajor