I have a simple fixture.yml

label:
    body: "<%= variable %>"

The issue is that the erb code is parsed as part of loading the fixture, but I actually want to body to be "<%= variable %>" un-interpolated.

How do I escape this?

-daniel

link|improve this question

feedback

1 Answer

up vote 25 down vote accepted

Add a second % to the opening tag:

label:
    body: "<%%= variable %>"

The <%% sequence is valid ERB, rendered as a literal <%.

link|improve this answer
ah ha! I was doubling both of them! TY – Daniel Feb 23 '10 at 23:02
feedback

Your Answer

 
or
required, but never shown

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