Alexandre
Alexandre

Reputation: 13328

Add-in for vs 2010

Is there any add-in for vs 2010 which can format html? ReSharper can't do it.

For example. I wanna get something like this

<tr>
 <td>Header1</td>
 <td>Header2</td>
</tr>

instread of

   <tr>
        <td>Header1</td>
  <td>Header2</td>

Upvotes: 0

Views: 56

Answers (1)

Lucero
Lucero

Reputation: 60276

Just hit CTRL+K, CTRL+D (Format Document - works for almost any document type).

Upvotes: 4

Related Questions