WARNING: Version 2.3 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Elision Token Filter
editElision Token Filter
editA token filter which removes elisions. For example, "l’avion" (the plane) will tokenized as "avion" (plane).
Accepts articles
setting which is a set of stop words articles. For
example:
"index" : { "analysis" : { "analyzer" : { "default" : { "tokenizer" : "standard", "filter" : ["standard", "elision"] } }, "filter" : { "elision" : { "type" : "elision", "articles" : ["l", "m", "t", "qu", "n", "s", "j"] } } } }