I am having an issue. If we have the following HTML code inserted into the editor (in source view):
<span class="content">Content</span>
On view I see:
Content
The issue I am having is that when I put my cursor next to the word Content and hit enter, the system creates another span:
<p><span class="content"></span></p>
I do not want to create another span. I just want a new paragraph. How do we prevent CKeditor from creating a new span?
If I place my cursor next to the text Content and hit space it just continues the span. I cannot figure out how to stop the span. The only way I have figure out is to view the page source and enter text outside of the span. However, most of our users do not understand HTML.
Please help