Hi,
I am editing some tables in HTML mode in VB and I see that VB is inserting some <br/> tags after each HTML line, effectively breaking the HTML.
A table like this:
HTML Code:
<table>
<tr>
<td> td 1 </td>
<td> td 2 </td>
</tr>
</tr>
becomes:
HTML Code:
<table> <br/>
<tr> <br/>
<td> td 1 </td> <br/>
<td> td 2 </td> <br/>
</tr> <br/>
</tr> <br/>
Is there a mod that can change this behavior ?