Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/crufter/slugify

For pretty urls.
https://github.com/crufter/slugify

Last synced: 2 months ago
JSON representation

For pretty urls.

Awesome Lists containing this project

README

        

Slugify
=======

For pretty urls.

Usage
=======

```
package main

import(
"github.com/opesun/slugify"
"fmt"
)

func main() {
str := `This is some hungarian text with accents: "Helló, belló."`
fmt.Println(slugify.S(str))
}
```

The snippet above will produce:
```
this-is-some-hungarian-text-with-accents-hello-bello
```