this code
= 5.times {|n| puts "<BR>"}
does nothing for me ...
this code
= 5.times {|n| puts "<BR>"}
does nothing for me ...
You can use % to specifically add a tag. So, for 5
do
%br/
%br/
%br/
%br/
%br/
But: why would you want to do this? It would probably be a better idea to use a %div and set the spacing in CSS rather than multiple BR tags.