sublimetext2 - Stop HTML Tidy in sublime from adding extra tags -


how prevent html tidy in sublime text adding tags such this

this want

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

after using html tidy -- dont want

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

"html tidy" isn't you're trying do.

for you're doing, "reindent lines" feature of sublime text 2 should sufficient.


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -