avelino / slugify

A Go slugify application that handles string

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

slugify

A Go slugify application that handles string

Build Status

Example:

package main

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

func main() {
	text := "Example slugify"
	fmt.Printf(text + ": " + slugify.Slugify(text))
}

Documentation

About

A Go slugify application that handles string

License:MIT License


Languages

Language:Go 100.0%