Popularity
2.4
Declining
Activity
0.0
Stable
32
4
4

Programming language: Go
License: MIT License

Slugify alternatives and similar packages

Based on the "blackfriday" category.
Alternatively, view Slugify alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Slugify or a related project?

Add another 'blackfriday' Package

README

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