Popularity
3.8
Stable
Activity
0.0
Stable
95
3
8
Programming language: Go
License: MIT License
Latest version: v0.2.0
go-slugify alternatives and similar packages
Based on the "blackfriday" category.
Alternatively, view go-slugify alternatives based on common mentions on social networks and blogs.
-
bluemonday
bluemonday: a fast golang HTML sanitizer (inspired by the OWASP Java HTML Sanitizer) to scrub user generated content of XSS -
mxj
Decode / encode XML to/from map[string]interface{} (or JSON); extract values with dot-notation paths and wildcards. Replaces x2j and j2x packages. -
go-pkg-rss
DISCONTINUED. This package reads RSS and Atom feeds and provides a caching mechanism that adheres to the feed specs. -
github_flavored_markdown
GitHub Flavored Markdown renderer with fenced code block highlighting, clickable header anchor links. -
go-pkg-xmlx
DISCONTINUED. Extension to the standard Go XML package. Maintains a node tree that allows forward/backwards browsing and exposes some simple single/multi-node search functions.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of go-slugify or a related project?
README
go-slugify
Make Pretty Slug.
Installation
go get -u github.com/mozillazg/go-slugify
Install CLI tool:
go get -u github.com/mozillazg/go-slugify/slugify
$ slugify "北京kožušček,abc"
bei-jing-kozuscek-abc
Documentation
API documentation can be found here: https://godoc.org/github.com/mozillazg/go-slugify
Usage
package main
import (
"fmt"
"github.com/mozillazg/go-slugify"
)
func main() {
s := "北京kožušček,abc"
fmt.Println(slugify.Slugify(s))
// Output: bei-jing-kozuscek-abc
}