Interface InputSearchHighlight

Provide tags for highlighting keyword results

For example if you want to highlight results with and tags, you should provide:

{
"preTag": "<mark>",
"postTag": "</mark>"
}

which will result in:

<mark>highlighted keyword</mark> rest of the text
interface InputSearchHighlight {
    postTag: string;
    preTag: string;
}

Properties

Properties

postTag: string
preTag: string