Remove all diacritics using latinize

This commit is contained in:
Wojciech Szostak 2021-10-15 17:51:27 +02:00
parent ae1b12c120
commit 2f60c4f03c
4 changed files with 19 additions and 1 deletions

View file

@ -80,4 +80,15 @@ TestRegister.addTests([
},
],
},
{
name: "Remove Diacritics: polish letter ł",
input: "zażółć gęślą jaźń ZAŻÓŁĆ GĘŚLĄ JAŹŃ",
expectedOutput: "zazolc gesla jazn ZAZOLC GESLA JAZN",
recipeConfig: [
{
"op": "Remove Diacritics",
"args": []
},
],
},
]);