如何防止 Sublime 文本中的 HTML 整洁添加诸如此类的额外标签
这就是我要的
<div class="row">
<aside class="span4">
<section>
<%= render 'shared/user_info' %>
</section>
<section>
<%= render 'shared/micropost_form' %>
</section>
</aside>
</div>
使用 HTML tidy 后,我得到了这个——我不想要
<html>
<head>
<title></title>
</head>
<body>
<div class="row">
<aside class="span4">
<section>
<%= render 'shared/user_info' %>
</section>
<section>
<%= render 'shared/micropost_form' %>
</section>
</aside>
</div>
</body>
</html>