Popularity
2.5
Growing
Activity
0.0
Stable
31
3
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.
-
sh
A shell parser, formatter, and interpreter with bash support; includes shfmt -
go-humanize
Go Humans! (formatters for units to human friendly sizes) -
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
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
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. -
gonameparts
Takes a full name and splits it into individual name parts
Build time-series-based applications quickly and at scale.
InfluxDB is the Time Series Platform where developers build real-time applications for analytics, IoT and cloud-native services. Easy to start, it is available in the cloud or on-premises.
Promo
www.influxdata.com
Do you think we are missing an alternative of Slugify or a related project?
Popular Comparisons
README
slugify
A Go slugify application that handles string
Example:
package main
import (
"fmt"
"github.com/avelino/slugify"
)
func main() {
text := "Example slugify"
fmt.Printf(text + ": " + slugify.Slugify(text))
}