If I have CuteEditor set to use Br as the break element in most cases it works fine. The problem is that if I press return while within text contained by a <p> tag, it splits the <p> tag into 2 <p> tags instead of inserting a <br>.
So if I hit return after "some text" I'd expect
<p> some text <br> some more text</p>
and instead I get
<p>some text</p><p>some more text</p>
I'm using FireFox if that matters. Is this a bug or a browser limitation? I'd like to let my client know if it is something that can be resolved or not.
Thanks!