Can some one please describe the usage of the following characters which is used in ERB file:
<% %>
<%= %>
<% -%>
<%# %>
what's the usage of each one ? or where can I find a blog or fair description about them ??
Thanks
|
Can some one please describe the usage of the following characters which is used in ERB file:
what's the usage of each one ? or where can I find a blog or fair description about them ?? Thanks |
|||||||
|
Executes the ruby code within the brackets.
Prints something into erb file.
Avoids line break after expression.
Comments out code within brackets; not sent to client (as opposed to HTML comments). Visit Ruby Doc for more infos about ERB. |
||||
|
|
Here's a good guide: http://api.rubyonrails.org/classes/ActionView/Base.html |
||||
|