Many users don’t know that to insert a simple break line it’s necessary to press SHIFT + ENTER. Unless indicating it under the editor it’s not evident…
Here is my proposition:
If the user click once on ENTER : insert <br />
If the user click second time on ENTER : replace <br /> by </p><p>
…
What do you think about ?
Here is my proposition:
If the user click once on ENTER : insert <br />
If the user click second time on ENTER : replace <br /> by </p><p>
…
What do you think about ?
RE: An idea … <p> <br />
The Editor should make the better style the default behaviour. Since there are Situations where <br> has the correct meaning (the following belongs to the same Paragraph but needs a new Line) It should be accessible but not too much straight forward.
I think the behaviour should simply stay the way it is.
RE: An idea … <p> <br />
RE: An idea … <p> <br />
If you want paragraphs to look like line breaks (no space after), just add this to your style sheet:
p {margin:0; padding:0}
RE: An idea … <p> <br />
In fact I set up a little test: fck with the font format dropdown only and the <p> behaviour, versus fck with font and text size dropdowns and the <br> behaviour. Guess what? Everybody prefered the non-standard, ugly font tag generation, because it did 'what they wanted it to do'.
However, since I'm trying to push more and more for standard compliance, i had to stick with the former behaviour, and place prominent help messages and tutorial across my app.
RE: An idea … <p> <br />
I think that i am going to use server-side to translate the bad html code into good code.
Use p {margin:0; padding:0} is totally absurd ! It produces <p> </p> between paragraphs ...
I am thus going to use p {margin:0; padding:0} in fckeditor only to translate bad code :
<p>bla bla bla bla bla</p>
<p>bla bla bla bla bla</p>
<p> </p>
<p>bla bla bla bla bla</p>
in good code =>
<p>bla bla bla bla bla<br>
bla bla bla bla bla</p>
<p>bla bla bla bla bla</p>