I have an .erb file where I'd like to return the following text:
Name <%r>
When I render this file, the erb interprets the <% as a ruby code and doesn't render the % signal.
I found one way to do this, putting the % signal in a String like this:
Name <<%= "%" %>r>
But this is very ugly. Is there any other way to do it?