2

如何防止 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>
4

1 回答 1

2

“HTML Tidy”不适合您想要做的事情。

对于您正在做的事情,sublime text 2 的“Reindent lines”功能应该就足够了。

于 2012-06-12T09:26:32.487 回答