Skip to content

Commit

Permalink
rename patched filters so the normalizer uses the default ones
Browse files Browse the repository at this point in the history
  • Loading branch information
wgresshoff committed Oct 8, 2024
1 parent a58ad7b commit 0e369eb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"type": "custom",
"char_filter": ["strip_special_chars"],
"filter": [
"lowercase",
"asciifolding",
"rdm_lowercase",
"rdm_asciifolding",
"edgegrams"
]
},
Expand All @@ -24,8 +24,8 @@
"type": "custom",
"char_filter": ["strip_special_chars"],
"filter": [
"lowercase",
"asciifolding"
"rdm_lowercase",
"rdm_asciifolding"
]
}
},
Expand All @@ -40,11 +40,11 @@
}
},
"filter": {
"lowercase": {
"rdm_lowercase": {
"type": "lowercase",
"preserve_original": true
},
"asciifolding": {
"rdm_asciifolding": {
"type": "asciifolding",
"preserve_original": true
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"type": "custom",
"char_filter": ["strip_special_chars"],
"filter": [
"lowercase",
"asciifolding",
"rdm_lowercase",
"rdm_asciifolding",
"edgegrams"
]
},
Expand All @@ -24,8 +24,8 @@
"type": "custom",
"char_filter": ["strip_special_chars"],
"filter": [
"lowercase",
"asciifolding"
"rdm_lowercase",
"rdm_asciifolding"
]
}
},
Expand All @@ -40,11 +40,11 @@
}
},
"filter": {
"lowercase": {
"rdm_lowercase": {
"type": "lowercase",
"preserve_original": true
},
"asciifolding": {
"rdm_asciifolding": {
"type": "asciifolding",
"preserve_original": true
},
Expand Down

0 comments on commit 0e369eb

Please sign in to comment.