Is it possible to manipulate data that is bound with AngularJS after the fact?
I am creating a basic search page and have generated the results using this code:
...
<div class="row" ng-repeat="document in sc.searchResult.content">
<blockquote>
{{document.content}}
</blockquote>
</div>
...
The issue I'm facing is that I need to highlight specific words in each result (similar to Google's search results)
https://i.sstatic.net/lItPM.png
How can I achieve this effect?