If we paste the following HTML -
<html><BODY><TABLE cellSpacing=2 cellPadding=2 border=0><TBODY><TR><td>test</td></TR></TBODY> </BODY></HTML>
and when we switch from Normal mode to HTML mode, it is changed to -
<html>
<BODY>
<TABLE cellSpacing=2 cellPadding=2 border=0>
<TR>
<TD>test</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Is there any way we avoid HTML indenting or HTML restructuring in the HTML mode?
In other words we want to see the same HTML, which we pasted in the HTML mode.