var _findString = function (selector,string) {
var word = $(selector+':contains("'+string+'")').text().split(" ");
var index = word.indexOf(string);
var me = word[index+1];
var number = word[index+2];
delete word[index+1];
delete word[index+2];
for(var i = 0; i<word.length; i++){
if(word[i] === string){
word[i] = "<span class='bounce highLight'>"+string+" "+me+' '+number+' '+'</span>';
}
}
$(selector+':contains("'+string+'")').html(word.join(' '));
}
/* add specific highLight styles here */
.highLight {
color: var (--highLight-text-color);
}