TextTable icon indicating copy to clipboard operation
TextTable copied to clipboard

Swift package for easily rendering text tables. Inspired by the Python tabulate library.

Results 4 TextTable issues
Sort by recently updated
recently updated
newest added

Hi, I would like to use https://github.com/onevcat/Rainbow to colorize cells in a TextTable. ``` let table = TextTable { [ Column(title: "Country", value: $0.country!.blue), Column(title: "County", value: $0.county!.red), ] }...

I've been keeping an eye on this repo for ages, because it's a nice fit for some console debug output I need for histograms. Today was the day I decided...

enhancement

This proposal supersedes #1, which was tentatively abandoned. This proposal is a breaking API change predicated on the approval of improved key paths in swift [SE-0161](https://github.com/apple/swift-evolution/blob/master/proposals/0161-key-paths.md). ## New Text Table...

enhancement
question