Greetings,

I found that line break converter turn several line breaks (ENTERs) into a single BR. Users can't make more than one breaks ... An I missing something or is it a bug ?

Thanks.

Comments

mkabot68’s picture

That is the defualt behavior- turn multiple "\n" characters into a single <br>

If you want to allow users to to add multiple "line breaks" you can add <p> and <br> to the Filtered HTML / HTML Filter. That way, they can put them in themselves.

ardas’s picture

Unfortunatly, this is not acceptable. I need usual users who don't know anything about HTML tags be able to simply press ENTER several times.
----------------
Regards,
Dmitry Kresin, ARDAS group (www.ardas.dp.ua)

mkabot68’s picture

I look forward to your feature enhancement to the line break filter with an option for converting newlines to a single break OR break per newline !

:)

Mantichora’s picture

I have the same problem.
What drupal actually does is converting text seperated by multiple breaklines into a paragraph.

So if you just add something like this to your stylesheet-file it should work too... I think:

div.node p
{
	padding-bottom: 1em;
}
geohelper’s picture

The above fix works, but I needed the paragraph padding to be specific to only comments so I used this instead...

.comment p { padding-bottom: 1em; }