Hello,
I try to save the custom normalizer as part of composite template. Receiving below error:
illegal_argument_exception', 'Custom normalizer [lower_normalizer] may not use char filter [html_strip]
Normalizer is defined as below:
{
"template": {
"settings": {
"analysis": {
"normalizer": {
"lower_normalizer": {
"type": "custom",
"char_filter": [
"html_strip"
],
"filter": [
"cjk_width",
"asciifolding",
"lowercase"
]
}
}
}
}
}
}
Thanks