pg_trgm gives me a score of 0.4 for both of these comparisons :
SELECT similarity('Noemie','Noémie');
0.4
SELECT similarity('Noemie','NoXmie');
0.4
Obviously the first one is more "similar" than the second, accents are often ommited in data entry, so it's quite useful to have a score that gives high similarity to letters that vary only by presence of absence of a accent.
Is their a way to tweak pg_trgm to give higher similarity score for words that differ only by accents ?