Elasticsearch - Search Results and Scoring
Given this Elasticsearch query snippet, what will the
highlight section return for a match in the title field?
{
"query": {"match": {"title": "quick fox"}},
"highlight": {"fields": {"title": {}}}
}