I want to know if it is possible to do the following:
<div ng-repeat='article in articles | filter:search'>
...
<div>
{{marked(article.body)}}
</div>
...
</div>
So I want to execute the "marked" function, passing the article body as a parameter and display the generated output.