Reputation: 11121
this code
= 5.times {|n| puts "<BR>"}
does nothing for me ...
Upvotes: 11
Views: 18485
Reputation: 12720
You can also insert regular html.
Like this:
%p
Headline
<br><br><br><br><br>
Paragraph goes here, blah blah blah...
Or like that:
:plain
<br><br><br><br><br>
Upvotes: 1
Reputation: 6631
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.
Upvotes: 2