Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using trouble with {{ and }} while using markdown. The code that I am trying to get into my Octopress blog looks like this:

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

Except, when it is rendered, the line with the {{ }} becomes:

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

If I change my code to this:

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

it renders with as

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

I.e., it includes the the \ and {.

Any ideas what I should do?

share|improve this question

1 Answer

up vote 0 down vote accepted

Finally figured it out. I need to use the raw tag here, and that takes care of things nicely.

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

produces this on the web page:

<x-book-item book="{{ book }}"></x-book-item>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.