如何在Github Flavored Markdown上使用带有html代码的{{}}括号?

时间:2016-06-15 11:27:48

标签: markdown jekyll github-flavored-markdown

我有下一个github markdown,其中{{product}}是一个AngularJS模板助手:

```html
<div ng-controller="ProductCtrl">
    <ul>
        <li ng-repeat="product in products">
            {{ product }}
        </li>
    </ul>
</div>
```

不幸的是,输出结果不包含括号:

有没有办法可以解决这个问题?

修改

这是我的输出html:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:2)

Raw会暂时禁用标记处理。这对于生成使用冲突语法的内容(例如,Mustache,Handlebars)非常有用。

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

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