ERB / Rails中结束标记的正确缩进

时间:2015-02-19 01:35:01

标签: html ruby-on-rails ruby erb

有没有办法在</a>帮助中修复link_to标记的缩进?

在我的.html.erb中:

<%= link_to... do %>
...
<% end %>
渲染.html中的

     <a href="..">
</a><!--fails to inherit the indentation-->

IDE中的2空格缩进:

enter image description here

Chrome view-source:*

enter image description here

1 个答案:

答案 0 :(得分:0)

这仍然是有效的HTML,所以你可以忽略它。

这取决于ERB(由Rails中的erubis提供支持)如何处理将在渲染文本中插入的字符串缓冲区中的前导和尾随空格。

您可以尝试使用<%= -%>。另外check this question也有差异。