I can’t seem to find where I can change which elements put opening and closing tags on the same line and which elements go on different lines when I use the auto-format feature in my jsp files.
Really I am trying to keep my td tags from auto formatting to a single line. For example, I have the code:
<table>
<tr>
<td>
Stuff
</td>
</tr>
</table>
when I use auto format it changes it to:
<table>
<tr>
<td>Stuff</td>
</tr>
</table>
In the above sample it doesn’t make that much of a difference but when I add a lot of content to my td tags it makes it a little cluttered. How can I change this behavior?