I am currently using tinyMCE and I needed to enable the "force_br_newlines: true" option. Without this setting, if I press the "Enter" key twice and check the source code, I only see one <br>
tag.
However, when I set the option to TRUE, it creates a problem with my unordered list. When the text loaded from my database into tinyMCE looks like:
<ul><li> MY TEXT </li><li> MY TEXT 2 </li><ul>
it transforms into:
<ul><br /><li> MY TEXT </li><br /><li> MY TEXT 2 </li><br /><ul>
Is there any way to prevent this behavior? I want to avoid having the <br />
tags within the content.
THANK YOU VERY MUCH FOR YOUR HELP!!!!!