A major problem I have with the TinyMCE editor in joomla is that many of the html output results are uncontrollable. For example, I am typing up articles within TinyMCE and after every paragraph I leave am forced to leave a line break (by pressing the enter key just like in MS word after every paragraph I type). What that translates in after the article is published, in actual code, is a <br> before and after the paragraphs (<p>,</p>). The paragraph element in HTML was designed specifically for paragraphs so there is no need to have breaks in between. Because of that I now have to style <p> and <br> for spaces between paragraphs rather than just <p>. I don't think I need to go into how much of an issue that creates. What if I want to use <br> for something else? If I change templates I have to re-style everything too. Has anyone found a solution for this?