2

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:

enter image description here

enter image description here

Maxim Zhukov
  • 10,060
  • 5
  • 44
  • 88

1 Answers1

4

Raw temporarily disables tag processing. This is useful for generating content (eg, Mustache, Handlebars) which uses conflicting syntax.

{% raw %}
  In Handlebars, {{ this }} will be HTML-escaped, but {{{ that }}} will not.
{% endraw %}

https://github.com/Shopify/liquid/wiki/liquid-for-designers#raw

C. Augusto Proiete
  • 24,684
  • 2
  • 63
  • 91