0

我在使用降价{{时遇到了麻烦。}}我试图进入我的 Octopress 博客的代码如下所示:

<ul id="books">
  <template iterate="book in books">
    <x-book-item book="{{ book }}"></x-book-item>
  </template>
</ul>

除非,当它被渲染时,带有 的行{{ }}变为:

<x-book-item book=""></x-book-item>

如果我将代码更改为此:

<x-book-item book="\{\{ book \}\}"></x-book-item>

它呈现为

<x-book-item book="\{\{ book \}\}"></x-book-item>

即,它包括\and {

有什么想法我应该做什么?

4

1 回答 1

0

终于想通了。我需要在raw这里使用标签,这可以很好地处理事情。

{% raw %}<x-book-item book="{{ book }}"></x-book-item>{% endraw %}

在网页上产生这个:

<x-book-item book="{{ book }}"></x-book-item>
于 2013-01-03T18:15:32.753 回答