Get best documetation on here, on iorecipes.com.
Useful for generating unique slugs to use in a url.
Go from, example.com/article/12
to example.com/article/fast-fox
Slug.GenerateSlug()
The Quick Fox! - "the-quick-fox"
@Fox&Friends - "foxfriends"
Slug.SetExistingSlugs(IEnumerable<string>)
Use this method to filter out existing slugs so that you don't have duplicates. So you can have:
example.com/article/fast-fox
example.com/article/fast-fox-1
example.com/article/fast-fox-2
etc.
Available on iorecipes.com