├── .gitignore ├── .travis.yml ├── CODEOWNERS ├── LICENSE ├── README.md ├── example └── example.go ├── format_test.go ├── in-repo.yml ├── tabular.go └── tabular_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @InVisionApp/platform -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/README.md -------------------------------------------------------------------------------- /example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/example/example.go -------------------------------------------------------------------------------- /format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/format_test.go -------------------------------------------------------------------------------- /in-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/in-repo.yml -------------------------------------------------------------------------------- /tabular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/tabular.go -------------------------------------------------------------------------------- /tabular_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InVisionApp/tabular/HEAD/tabular_test.go --------------------------------------------------------------------------------