Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avelino/slugify
A Go slugify application that handles string
https://github.com/avelino/slugify
go golang slug slugify
Last synced: about 2 months 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-01T14:59:21.000Z (over 6 years ago)
- Last Synced: 2024-07-31T20:52:34.129Z (4 months ago)
- Topics: go, golang, slug, slugify
- Language: Go
- Size: 5.86 KB
- Stars: 33
- Watchers: 4
- 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[![Build Status](https://travis-ci.org/avelino/slugify.svg?branch=master)](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)