├── .gitignore ├── .travis.yml ├── HISTORY.md ├── LICENSE ├── README.md ├── tablib_csv.go ├── tablib_databook.go ├── tablib_dataset.go ├── tablib_errors.go ├── tablib_exportable.go ├── tablib_html.go ├── tablib_json.go ├── tablib_sort.go ├── tablib_sql.go ├── tablib_tabular.go ├── tablib_test.go ├── tablib_util.go ├── tablib_xlsx.go ├── tablib_xml.go └── tablib_yaml.go /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/README.md -------------------------------------------------------------------------------- /tablib_csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_csv.go -------------------------------------------------------------------------------- /tablib_databook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_databook.go -------------------------------------------------------------------------------- /tablib_dataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_dataset.go -------------------------------------------------------------------------------- /tablib_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_errors.go -------------------------------------------------------------------------------- /tablib_exportable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_exportable.go -------------------------------------------------------------------------------- /tablib_html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_html.go -------------------------------------------------------------------------------- /tablib_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_json.go -------------------------------------------------------------------------------- /tablib_sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_sort.go -------------------------------------------------------------------------------- /tablib_sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_sql.go -------------------------------------------------------------------------------- /tablib_tabular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_tabular.go -------------------------------------------------------------------------------- /tablib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_test.go -------------------------------------------------------------------------------- /tablib_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_util.go -------------------------------------------------------------------------------- /tablib_xlsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_xlsx.go -------------------------------------------------------------------------------- /tablib_xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_xml.go -------------------------------------------------------------------------------- /tablib_yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrison/go-tablib/HEAD/tablib_yaml.go --------------------------------------------------------------------------------