I've noticed that in some lines of rails views, this is used:
<% # Code... -%>
instead of:
<% # Code... %>
What is the difference?
|
2
|
I've noticed that in some lines of rails views, this is used:
instead of:
What is the difference? |
||
|
|
|
|
There will be no new lines in between the |
||
|
|
|
Consider this
The code above yields to the HTML below if the @some_var is some_value
If you've put - in the closing tag, then the ERB interpreter would remove the new lines for those with code tag including - and result in the following
This is useful if you need to have a good looking code for HTML. Sometimes you'll find it useful when working sideby side with a designer Hope this helps. |
|||
|
|
|
|
The different options for evaluating code in ERB are as follows (they can be accessed in Textmate using Ctrl-Shift-. ):
Notice the difference between Basically, the |
||
|
|
|
|
A little late, but I think it's worth pointing out that you can also do this:
This strips away any whitespace in front. |
||
|
|