通过添加额外标签,在升华中停止HTML Tidy

时间:2012-06-09 23:50:28

标签: sublimetext2 htmltidy

如何防止Sublime文本中的HTML整理添加额外的标签,例如此

这就是我想要的

    <div class="row">
        <aside class="span4">
            <section>
            <%= render 'shared/user_info' %>
            </section>
            <section>
            <%= render 'shared/micropost_form' %>
            </section>
        </aside>
    </div>

使用HTML整洁后我得到了这个 - 我不想要

      <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>

1 个答案:

答案 0 :(得分:2)

“HTML Tidy”不适用于您尝试做的事情。

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