I have next github markdown, where {{ product }} is an AngularJS template helper:
```html
<div ng-controller="ProductCtrl">
<ul>
<li ng-repeat="product in products">
{{ product }}
</li>
</ul>
</div>
```
Unfortunately, output result does not contain brackets:
Is there a way i could solve this issue?
Edit:
This is my output html: