Skip to content

Commit

Permalink
[DOCS] Fix case sensitivity for elision token filter (#69873) (#69878)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodewig committed Mar 3, 2021
1 parent 69b850b commit 8e92000
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ specified.

`articles_case`::
(Optional, Boolean)
If `true`, the filter treats any provided elisions as case sensitive.
Defaults to `false`.
If `true`, elision matching is case insensitive. If `false`, elision matching is
case sensitive. Defaults to `false`.

[[analysis-elision-tokenfilter-customize]]
==== Customize
Expand All @@ -157,24 +157,24 @@ To customize the `elision` filter, duplicate it to create the basis
for a new custom token filter. You can modify the filter using its configurable
parameters.

For example, the following request creates a custom case-sensitive `elision`
For example, the following request creates a custom case-insensitive `elision`
filter that removes the `l'`, `m'`, `t'`, `qu'`, `n'`, `s'`,
and `j'` elisions:

[source,console]
--------------------------------------------------
PUT /elision_case_sensitive_example
PUT /elision_case_insensitive_example
{
"settings": {
"analysis": {
"analyzer": {
"default": {
"tokenizer": "whitespace",
"filter": [ "elision_case_sensitive" ]
"filter": [ "elision_case_insensitive" ]
}
},
"filter": {
"elision_case_sensitive": {
"elision_case_insensitive": {
"type": "elision",
"articles": [ "l", "m", "t", "qu", "n", "s", "j" ],
"articles_case": true
Expand Down

0 comments on commit 8e92000

Please sign in to comment.