'Elasticseach highlighting Thai pdf file not work

I index Thai pdf document via ingest-attachment plug-in but when search content in file this display distorted.

This content in pdf:

enter image description here

Mappings:

"attachment": {
                "properties": {
                    "content": {
                        "type": "text",
                        "analyzer": "rebuilt_thai"
                    },
                    "content_length": {
                        "type": "long"
                    },
                    "content_type": {
                        "type": "text",
                        "fields": {
                            "keyword": {
                                "type": "keyword",
                                "ignore_above": 256
                            }
                        }
                    },
                    "date": {
                        "type": "date"
                    }
                }
            }

This search result: enter image description here

My English isn’t so great but I’ll try.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source