mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Explain ERB space removal. [ci skip]
This commit is contained in:
parent
e2ce4c7aa3
commit
700ec897f9
1 changed files with 3 additions and 1 deletions
|
@ -33,7 +33,9 @@ module ActionView #:nodoc:
|
|||
#
|
||||
# If you absolutely must write from within a function use +concat+.
|
||||
#
|
||||
# <%- and -%> suppress leading and trailing whitespace, including the trailing newline, and can be used interchangeably with <% and %>.
|
||||
# When on a line that only contains whitespaces except for the tag, <% %> suppress leading and trailing whitespace,
|
||||
# including the trailing newline. <% %> and <%- -%> are the same.
|
||||
# Note however that <%= %> and <%= -%> are different: only the latter removes trailing whitespaces.
|
||||
#
|
||||
# === Using sub templates
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue