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

Lists

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)