The linebreaks are not working as intended. This was the bug in 5.3 and is still occuring at 6.1.2
if a table is surrounded by a custom div, then if you press enter and type something in, the new text does not wrap in requested linebreak. instead it creates a custom div tag as a containing tag.
Steps to reproduce
- use url http://cutesoft.net/example/oncarriagereturn.aspx
- select "P" as line break
- select HTML tab.
- Type <div customTag='x'></div>
- place the cursor inside div
- switch to Normal mode
- Drop a 2x2 table. (The cursor is pointing right after the bottom right cell now)
- Press "Enter" key, then type test
- Switch to HTML mode
Actual
<div customtag="x">
<table cellspacing="2" cellpadding="2" width="500" border="0">
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div customtag="x">test</div>
<div customtag="x">
<table cellspacing="2" cellpadding="2" width="500" border="0">
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<p>test</p>
Please let us know what can be done to fix this?