├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── pptable.cabal ├── src └── Text │ └── PrettyPrint │ └── Tabulate.hs ├── stack.yaml └── test ├── README.lhs └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pptable/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pptable/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pptable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pptable/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /pptable.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pptable/HEAD/pptable.cabal -------------------------------------------------------------------------------- /src/Text/PrettyPrint/Tabulate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pptable/HEAD/src/Text/PrettyPrint/Tabulate.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pptable/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/README.lhs: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdevanla/pptable/HEAD/test/Spec.hs --------------------------------------------------------------------------------