node-diacritics icon indicating copy to clipboard operation
node-diacritics copied to clipboard

remove diacritics from strings ("ascii folding") - Node.js module

Results 16 node-diacritics issues
Sort by recently updated
recently updated
newest added

Hello. I wrote this function [on stackoverflow](http://stackoverflow.com/a/40959537/2468508) that removes the most common Arabic diacritics, as well as normalizing some characters that are commonly (although incorrectly) substituted in place of each...

So we can follow what is being changed on the releases. Thanks :)

``` > console.log(removeDiacritics("más")); mas > console.log(removeDiacritics("más")); más ``` The first has U+00E1 LATIN SMALL LETTER A WITH ACUTE and the second has U+0061 LATIN SMALL LETTER A + U+0301 COMBINING...

enhancement

Do you have a list of diacritrics that get converted? In Italy, the fiscal code ("codice fiscale") has recently changed in a way that all the diacritrics are converted to...

Unicode defines normalized forms for characters and character classes. It might work to normalize strings to NFKD and remove any characters of class Mn (Nonspacing_Mark) (see [table 12](http://www.unicode.org/reports/tr44/#GC_Values_Table)) It might...

Hi @andrewrk, What do you think about this? Right now i'm facing a case where i need to have a group of all possible diacritics from a specific char. I...