vote up 1 vote down star

Hello World,

I need custom Markdown library for PHP which converts new lines to <br/> without the need to put double space on the end of the line, kinda like here on SO. I've been looking on the web but without success. I know I could just amend standard library but my regex skills are none.

Does anybody know about such library in existence or know how to change default behaviour easily?

Many thanks

EDIT: Dumb me, SO does not work this way, it appears to be standard Markdown behaviour. However such functionality is being used on github.com.

flag
Why do you need this? – FractalizeR Oct 15 at 13:08
Mainly to use as formatting layer for notebook so i can easily add headers, lists and so on. But sometimes when i copy say poetry from the web I need to add double space on each line to preserve line breaks which is frustrating. Another example is simple list without need for + or * signs. – GDMFSOB Oct 15 at 13:38
Probably because it is more intuitive for users – Jacco Oct 15 at 13:41
@Jacco: Problem is this is not. When you enter text on new line, you expect that to be displayed on new line. – GDMFSOB Oct 15 at 13:46
That's exactly what I meant, the double space is non-intuitive – Jacco Oct 15 at 13:54

2 Answers

vote up 1 vote down

http://php.net/manual/en/function.nl2br.php

link|flag
1  
That was first solution I've checked, unfortunately it doesn't work as expected, it results in <br/> tags between <li></li> elements for example. Basically it makes every new line double. I can't downvote but this is not correct answer. – GDMFSOB Oct 15 at 12:59
1  
What's wrong with <br /> inside <li>? If a line feed break a paragraph, I'd expect the same behavior everywhere. – ntd Oct 15 at 14:37
@ntd: I meant <li>text</li> <br/> <li>text</li> <br/> <li>text</li> Sorry if I didn't make myself clear. Furthermore string "# Header \n new line" will output <h1>header</h1><br/><br/><p>new line</p>. Hope you understand now. – GDMFSOB Oct 15 at 15:01
@unknown (google): yes, now I see your point. – ntd Oct 15 at 16:22
vote up 0 vote down

One way is to use Text_Wiki, enabling the newline rule. I suspect other wiki parsers have this feature, maybe just not enabled by default.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.