这是我的erb
:
<h1>Demo#hello</h1>
<p>This is my first Ruby on Rails Application :) </p>
<%= 1+2 %>
<% 10.times do %>
<%= "Hello,World\n" %>
<% end %>
导致:
Demo#hello
This is my first Ruby on Rails Application :)
3 Hello,World Hello,World Hello,World Hello,World Hello,World Hello,World Hello,World Hello,World Hello,World Hello,World
我知道...知道有一些名为<br/>
的标签可以打印新行......
但我很好奇是否可以使用&#34; \ n&#34; ....
提前致谢!
答案 0 :(得分:1)
通常在HTML中,换行符被视为空格。但是你可以用CSS来换行换行符:
white-space:pre-wrap;