https://github.com/avelino/slugify
A Go slugify application that handles string
https://github.com/avelino/slugify
go golang slug slugify
Last synced: 27 days ago
JSON representation
A Go slugify application that handles string
- Host: GitHub
- URL: https://github.com/avelino/slugify
- Owner: avelino
- License: mit
- Created: 2015-04-13T01:54:30.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-01T14:59:21.000Z (almost 7 years ago)
- Last Synced: 2025-03-16T04:23:57.926Z (28 days ago)
- Topics: go, golang, slug, slugify
- Language: Go
- Size: 5.86 KB
- Stars: 34
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-go - Slugify - Go slugify application that handles string. (Natural Language Processing / Slugifiers)
- zero-alloc-awesome-go - Slugify - Go slugify application that handles string. (Natural Language Processing / Slugifiers)
- awesome-go - slugify - A Go slugify application that handles string - ★ 25 (Text Processing)
- awesome-go-extra - slugify - 04-13T01:54:30Z|2018-05-01T14:59:21Z| (Bot Building / Slugifiers)
README
# slugify
A Go slugify application that handles string[](https://travis-ci.org/avelino/slugify)
Example:
package main
import (
"fmt"
"github.com/avelino/slugify"
)
func main() {
text := "Example slugify"
fmt.Printf(text + ": " + slugify.Slugify(text))
}[Documentation](http://godoc.org/github.com/avelino/slugify)