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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix default stemmer description #105

Merged
merged 1 commit into from
Feb 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,12 @@ The configuration options are as follows:
* `fuzzy` - matches if the words are 'close' but not necessarily exact matches
* `phrases` - automatically handle phrases support
* `stemmer` - can be one of these types:
* `default` - no stemmer
* `default` - Porter stemmer for English language
* `no` - no stemmer
* `arabic` - Arabic language
* `german` - German language
* `italian` - Italian language
* `porter` - Porter language
* `porter` - Porter stemmer for English language
* `russian` - Russian language
* `ukrainian` - Ukrainian language
* `display_route` - display the route in the search results
Expand Down
7 changes: 4 additions & 3 deletions blueprints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,13 +173,14 @@ form:
size: small
classes: fancy
label: Stemmer
help: An automated process which produces a base string in an attempt to represent related words
help: An automated process which produces a base string in an attempt to represent related words. If your content is not in the language listed, for best search results it is recommended to disable the stemmer.
options:
default: Default
default: Default (English)
no: Disabled
arabic: Arabic
porter: English
german: German
italian: Italian
porter: Porter
russian: Russian
ukrainian: Ukrainian

Expand Down