IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Elision Token Filter
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Elision 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:
PUT /elision_example { "settings" : { "analysis" : { "analyzer" : { "default" : { "tokenizer" : "standard", "filter" : ["standard", "elision"] } }, "filter" : { "elision" : { "type" : "elision", "articles" : ["l", "m", "t", "qu", "n", "s", "j"] } } } } }