Slugify icon indicating copy to clipboard operation
Slugify copied to clipboard

diacritic character has been removed without replacing with undiacritic character

Open trunkey2003 opened this issue 11 months ago • 0 comments

As demonstrated in the documentation, I attempted to use the input ambição cerra o coração with Slugify. However, the output I received was a-ambio-cerra-o-corao instead of the expected a-ambicao-cerra-o-coracao.

Environment:

  • .NET Version: 8.0.102
  • Slugify.Core Version: 4.0.1

Test Code:

public static string GenerateSlug(string title)
{
    SlugHelper slug = new SlugHelper();
    return slug.GenerateSlug("a ambição cerra o coração");
}

trunkey2003 avatar Feb 27 '24 08:02 trunkey2003