-
-
Notifications
You must be signed in to change notification settings - Fork 772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for non-ASCII search #133
Comments
|
Any news about this feature ? Will it be implemented soon ? Thanks |
Lots of people need it... |
Would appreciate the inclusion of this feature. BTW awesome library! |
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days |
Hi! Any news about this feature? |
I think this should solve the issue: It uses the diacritics library. |
Hi all,
Currently, Fuse doesn't support searching through non-ASCII characters. For instance searching with
stro
onströmberg
only matchesstr
. This could be changed bystro
->stro
)strömberg
->stromberg
)match [0,3]
)strömberg
+match [0,3]
)This code seems to have a pretty complete transliteration table (see
char_map
object):https://github.com/pid/speakingurl/blob/master/lib/speakingurl.js
Not that I have a need for it at the moment, just bringing it up as a suggestion :)
The text was updated successfully, but these errors were encountered: