Is there a way to mimic the behavior of the List button but using <p> instead?
Let me explain. If you have a text like this: *this is actually dummy text.
Suspendisse est felis, feugiat nec.
Mauris egestas fermentum libero.
Aenean sed arcu.
In dictum velit in sapien.
Aenean lobortis. Nulla vitae pede.
Phasellus vitae pede.
If you highlight it and apply the List button you get this
Code: Select all
<ul>
<li>Suspendisse est felis, feugiat nec.</li>
<li>Mauris egestas fermentum libero.</li>
<li>Aenean sed arcu.</li>
<li>In dictum velit in sapien.</li>
<li>Aenean lobortis. Nulla vitae pede.</li>
<li>Phasellus vitae pede.</li>
</ul>
Code: Select all
<p>Suspendisse est felis, feugiat nec.</p>
<p>Mauris egestas fermentum libero.</p>
<p>Aenean sed arcu.</p>
<p>In dictum velit in sapien.</p>
<p>Aenean lobortis. Nulla vitae pede.</p>
<p>Phasellus vitae pede.</p>
I am asking or suggesting for this feature.
Any ideas are welcome.
Regards