I have an tinyMCE and I have to set the option "force_br_newlines: true", because when I don't do it, and I'm pushing "Enter" for example two times and look in the source-code, there is only one <br>.
But when I set the option on TRUE, I have a problem with my unsorted list. When the loaded text comes from my databse to the tinyMCE, it makes out of
<ul><li> MY TEXT </li><li> MY TEXT 2 </li><ul>
this-->
<ul><br /><li> MY TEXT </li><br /><li> MY TEXT 2 </li><br /><ul>
Is there a possibility to prevent this??? I dont want to have the <br /> in it!
THANK YOU VERY MUCH FOR YOUR HELP!!!!!