Steps to reproduce
- Use http://cutesoft.net/example/general.aspx
- Switch to HTML mode
- Enter the following:
<p>beginning text</p><p><a id="anch1" name="anch1"></a>text between anchors<a id="anch2" name="anch2"></a></p>
- Switch to Normal mode
- Position the cursor after "beginning text"
- Drop another Anchor (anch3).
- Switch to HTML mode
- anch3 is incorrectly inserted after anch1 on the 2nd line
Actual results
<p>beginning text</p>
<p><a id="anch1" name="anch1"></a><a id="anch3" name="anch3"></a>text between anchors<a id="anch2" name="anch2"></a></p>
Expected results
<p>beginning text<a id="anch3" name="anch3"></a></p>
<p><a id="anch1" name="anch1"></a>text between anchors<a id="anch2" name="anch2"></a></p>
Is this a known issue that is planned to be corrected in the next release?
Thanks.