Lightweight string slugifier for .NET. Converts text into URL-friendly slugs (e.g. "Café crème" -> "cafe-creme").
$ dotnet add package StringSlugifyLightweight string slugifier for .NET. Converts text into URL-friendly slugs.
dotnet add package StringSlugify
using StringSlugify;
Console.WriteLine("Café crème au lait!".ToSlug()); // "cafe-creme-au-lait"
--netstandard2.0net8.0dotnet build -c Release
# Package is produced during build because GeneratePackageOnBuild=true
# Find the .nupkg and .snupkg under: src/StringSlugify/bin/Release
MIT