1
11D.Universe
When adding DWT formatting to files, the combined files have extra
lines of code. Here's a part of the DWT:
<td>
<div style="overflow: auto; height: 99%; width: 100%">
<font face="Book Antiqua">
<!-- #BeginEditable "pageContent" -->
<!-- #EndEditable -->
</font>
</div>
</td>
However, the final merged code looks like:
<td>
<div style="overflow: auto; height: 99%; width: 100%">
<font face="Book Antiqua">
</font> <----------------- FP added this code
<!-- #BeginEditable "pageContent" -->
Contents of Original HTML file HERE
<!-- #EndEditable -->
</font>
</div>
</td>
===================================================
Any idea what's happening and how I can repair it?
lines of code. Here's a part of the DWT:
<td>
<div style="overflow: auto; height: 99%; width: 100%">
<font face="Book Antiqua">
<!-- #BeginEditable "pageContent" -->
<!-- #EndEditable -->
</font>
</div>
</td>
However, the final merged code looks like:
<td>
<div style="overflow: auto; height: 99%; width: 100%">
<font face="Book Antiqua">
</font> <----------------- FP added this code
<!-- #BeginEditable "pageContent" -->
Contents of Original HTML file HERE
<!-- #EndEditable -->
</font>
</div>
</td>
===================================================
Any idea what's happening and how I can repair it?