I downloaded the trial version of Cute Editor.NET to test it on .NET 2.0 framework. I found a problem about custom tags too. I set Editor1.BreakElement = CuteEditor.BreakElement.P, so I can use <P> instead of <DIV>.
There is the problem:
- type in <p><placeholder>[[First Name]]</placeholder></p> in HTML view.
- switch to Normal view and place the cursor at the end of the text, then press Enter.
- switch to HMTL view you can see the following html code. The tags </p><p> are inserted before the custom closing tag </placeholder>.
<p>
<placeholder>[[First Name]]</p>
<p></placeholder>
</p>
Something wrong with my settings? Any help would be appreciated.