tags:

views:

87

answers:

2

How can I get ERB to replace tags in a format other than

<%= %>

for example:

{{   }}

Thanks

+1  A: 

Maybe something like this:

ERB.new(your_template.gsub("{{", "<%=").gsub("}}", "%>")).result

I don't think there is an option to tell ERB to use different tags.

But you can use liquid library which uses this curly braces syntax.

sickill
i used eRubis in the end, this allows customisation
Andrew Bullock
A: 

I believe ERb also supports inline interpolated strings (#{}) in place of percent brackets, so perhaps that might better suit your needs?

gabriel