├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── _example ├── 01-styles-demo │ └── main.go ├── 02-ugly-span │ └── main.go ├── 03-benchmarks-with-others │ ├── README.md │ ├── bench │ │ ├── data.go │ │ ├── simpletable.go │ │ ├── simpletable_test.go │ │ ├── termtables.go │ │ ├── termtables_test.go │ │ ├── uitable.go │ │ └── uitable_test.go │ └── main.go ├── 04-multiline │ └── main.go └── 05-colorize │ └── main.go ├── benchmarks_test.go ├── cell.go ├── cell_test.go ├── column.go ├── column_test.go ├── content.go ├── content_test.go ├── contents.go ├── doc.go ├── go.mod ├── go.sum ├── row.go ├── row_test.go ├── style.go ├── table.go └── table_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/README.md -------------------------------------------------------------------------------- /_example/01-styles-demo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/01-styles-demo/main.go -------------------------------------------------------------------------------- /_example/02-ugly-span/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/02-ugly-span/main.go -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/README.md -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/bench/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/bench/data.go -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/bench/simpletable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/bench/simpletable.go -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/bench/simpletable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/bench/simpletable_test.go -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/bench/termtables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/bench/termtables.go -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/bench/termtables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/bench/termtables_test.go -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/bench/uitable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/bench/uitable.go -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/bench/uitable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/bench/uitable_test.go -------------------------------------------------------------------------------- /_example/03-benchmarks-with-others/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/03-benchmarks-with-others/main.go -------------------------------------------------------------------------------- /_example/04-multiline/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/04-multiline/main.go -------------------------------------------------------------------------------- /_example/05-colorize/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/_example/05-colorize/main.go -------------------------------------------------------------------------------- /benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/benchmarks_test.go -------------------------------------------------------------------------------- /cell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/cell.go -------------------------------------------------------------------------------- /cell_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/cell_test.go -------------------------------------------------------------------------------- /column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/column.go -------------------------------------------------------------------------------- /column_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/column_test.go -------------------------------------------------------------------------------- /content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/content.go -------------------------------------------------------------------------------- /content_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/content_test.go -------------------------------------------------------------------------------- /contents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/contents.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/doc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/go.sum -------------------------------------------------------------------------------- /row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/row.go -------------------------------------------------------------------------------- /row_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/row_test.go -------------------------------------------------------------------------------- /style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/style.go -------------------------------------------------------------------------------- /table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/table.go -------------------------------------------------------------------------------- /table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexeyco/simpletable/HEAD/table_test.go --------------------------------------------------------------------------------