-
Notifications
You must be signed in to change notification settings - Fork 13
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
Searching for %>% is broken, using :: in search is broken #320
Comments
Thanks for reporting, seems like the search is confused by thoses special characters |
It turns out thoses characters are stripped out at index time by elasticsearch. This phase is called the analysis, and the standard analyzer removes most of the punctuation: https://www.elastic.co/guide/en/elasticsearch/guide/current/analysis-intro.html The only way to have them back would be to reindex everything in a new index that uses another analyzer. This can take a very long time and results for more "common" usage can be affected in a bad way. I would leave this alone for now. Hopefully people can search for |
I don't know if it afffects your decision, but searching for functions by using |
Good to know, I'll keep this in mind while exploring solutions |
Searching for |
Searching for magrittr's pipe operator,
%>%
leads me tohttps://www.rdocumentation.org/search?q=%25%3E%25
with no functions found.
The page I wanted is here
https://www.rdocumentation.org/packages/magrittr/versions/1.5/topics/%25%3E%25
The text was updated successfully, but these errors were encountered: