├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── benchmark_test.go ├── doc.go ├── example_test.go ├── slugify.go ├── slugify └── main.go └── slugify_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/README.md -------------------------------------------------------------------------------- /benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/benchmark_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/doc.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/example_test.go -------------------------------------------------------------------------------- /slugify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/slugify.go -------------------------------------------------------------------------------- /slugify/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/slugify/main.go -------------------------------------------------------------------------------- /slugify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozillazg/go-slugify/HEAD/slugify_test.go --------------------------------------------------------------------------------