## 高亮顯示關鍵詞
```
GET /user/_search
{
"query": {
"match": {
"name": "李四"
}
},
"highlight": {
"fields": {
"address": {
"pre_tags": "<span style='color:red'>", # 開始標簽
"post_tags": "<span/>" # 結束標簽
}
}
}
}
```