我想在github.io上的博客上放一些代码。它是jekyll上的pixyll主题。
代码的一个例子是
```
<!-- Add some model -->
<input type="text" ng-model="hello-model"></input>
<!-- And show that up -->
<h1>{{hello-model}}</h1>
```
然而,当它出现在博客上时。它显示没有{{}}。
<!-- Add some model -->
<input type="text" ng-model="hello-model"></input>
<!-- And show that up -->
<h1></h1>
有人可以帮助我在博客中添加{{}}。
答案 0 :(得分:1)