Canducci.Slug
Package Installation (NUGET)
PM> Install-Package Canducci.SlugHow to use?
Declare o namespace using Canducci.Slug;
Example unlimited text example
string textSlug = "product source main".ToSlug();
// product-source-mainExample with up to 15 characters except the dash
string textSlug = "product source main".ToSlug(15);
// product-source