Actually, this is a good thing. I know when I'm entering content I want to get a new paragraph when I hit enter. If all you want is a <br> tag then press shift/enter together. This type of functionality occurs in M$ Word as well, especially if I need a line return inside of something like a bullet point.
RE: why <p> instead of <br>?
ok i think that this don't run
// Transform <P> to <DIV>
var re = new RegExp("(<P)([^>]*>.*?)(<\/P>)","gi") ; // Different because of a IE 5.0 error
html = html.replace( re, "<div$2</div>" ) ;
RE: why <p> instead of <br>?