Docs: Fix syntax on lang-analyzer
Some of the language analyzer documentation contained invalid json. Closes #7098
This commit is contained in:
parent
a848b658e8
commit
34426eb8c2
|
@ -367,7 +367,7 @@ The `cjk` analyzer could be reimplemented as a `custom` analyzer as follows:
|
||||||
"cjk": {
|
"cjk": {
|
||||||
"tokenizer": "standard",
|
"tokenizer": "standard",
|
||||||
"filter": [
|
"filter": [
|
||||||
"cjk_width"
|
"cjk_width",
|
||||||
"lowercase",
|
"lowercase",
|
||||||
"cjk_bigram",
|
"cjk_bigram",
|
||||||
"english_stop"
|
"english_stop"
|
||||||
|
@ -1116,7 +1116,7 @@ The `persian` analyzer could be reimplemented as a `custom` analyzer as follows:
|
||||||
"analyzer": {
|
"analyzer": {
|
||||||
"persian": {
|
"persian": {
|
||||||
"tokenizer": "standard",
|
"tokenizer": "standard",
|
||||||
"char_filter": [ "zero_width_spaces" ]
|
"char_filter": [ "zero_width_spaces" ],
|
||||||
"filter": [
|
"filter": [
|
||||||
"lowercase",
|
"lowercase",
|
||||||
"arabic_normalization",
|
"arabic_normalization",
|
||||||
|
|
Loading…
Reference in New Issue