有没有办法在</a>
帮助中修复link_to
标记的缩进?
在我的.html.erb中:
<%= link_to... do %>
...
<% end %>
渲染.html中的:
<a href="..">
</a><!--fails to inherit the indentation-->
IDE中的2空格缩进:
Chrome view-source:*
:
答案 0 :(得分:0)
这仍然是有效的HTML,所以你可以忽略它。
这取决于ERB(由Rails中的erubis提供支持)如何处理将在渲染文本中插入的字符串缓冲区中的前导和尾随空格。
您可以尝试使用<%= -%>
。另外check this question也有差异。