I am using parse server with MongoDB Atlas. I have an v3 index (diacritics-insensitive) implemented and it is working fine.
In Next I want to highlight text in search result. Here is a mondodb article that I want to achieve: https://docs.atlas.mongodb.com/reference/atlas-search/highlighting
But in parse server I didn't found an way to achieve this.
I can highlight text using JS preg match but preg match is not working with diacritics, so I want to utilize MongoDB Atlas highlight feature.
Thanks