Topic: Line-height - Line break height Bug?

Thanks KeyDog for your fast  answer  big_smile

I'm going to look at it.

I have another question (but it wasn't with the same subject):
When I write a post, I put lines white to make paragraphs, but once posted, there is not a white line anymore.
I looked on the forum, but I didn't find explanation in this problem.

If need, I can make another post somewhere else to ask that.

Once again, thank you for your answer:D
Good day

Re: Line-height - Line break height Bug?

You mean this right?

http://keydogbb.info/img/line1.png http://keydogbb.info/img/line2.png

3 (edited by Kilandra 2012-01-24 14:48)

Re: Line-height - Line break height Bug?

Yes KeyDog

I write :

Line 1
---- white line
Line 2
---- white line
Line 3

And, when I posted, I have

Line 1
Line 2
Line 3

Thus I must write :

Line 1
---- white line
---- white line
Line 2
---- white line
---- white line
Line 3

Sorry if my explanations aren't very clear
And Thanks for your help big_smile

Re: Line-height - Line break height Bug?

OK started new topic for this. Thanks for the report.

Re: Line-height - Line break height Bug?

Thank you for the creation of the new topic big_smile

Good afternoon

6 (edited by Quadric 2012-01-24 19:13)

Re: Line-height - Line break height Bug?

got the same issue.. i think there is something wrong in parse_message function (parser.php) in regular expressions and str_replace. I'm not good in RE so i'm not able to present here any solution.

for:
abc
def

result:

<p>abc<br />def</p>


for:
abc
--- <- \n WHITESPACE
def

result:

<p>abc</p><p>def</p>


for:
abc
--- <- \n WHITESPACE
--- <- \n WHITESPACE
def

result:

<p>abc</p><br /><p>def</p>