I have a paragraph in the editor lie this (looking at html view):
<p class="some-class">some text</p>
When the user presses 'Enter' to create a new line, the class is repeated:
<p class="some-class"> </p>
I would prefer that a new line create a <p> without the class - how can I make this happen?
<p class="some-class">some text</p>
When the user presses 'Enter' to create a new line, the class is repeated:
<p class="some-class"> </p>
I would prefer that a new line create a <p> without the class - how can I make this happen?
