Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement [Tip] Improving the search for words with diacritics (accents, etc.) #191

Open
mx3coding opened this issue Aug 22, 2023 · 0 comments

Comments

@mx3coding
Copy link

馃

When you search for "pao" it did not match the word "p茫o" (bread in portuguese), because of the "~" (tilde) in the "a" letter.

So I modified the file "lunr.js", inside "node_modules/@cmfcmf/docusaurus-search-local/lib/":

  1. Added the function:
    String.prototype.toLowerCaseNormMx = function() {
    return this.normalize("NFD").replace(/\p{Diacritic}/gu, "")
    }

  2. Replaced every ".toLowerCase()" for "toLowerCaseNormMx()"

Result: Now I can search for "accented words" without the need for the accent.


Disclaimer: I needed a quick fix ASAP, so I did the "wrong" way.
So I am posting just in case it helps anyone.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant