Re: [PHP-DEV] Function proposal: nl2p

2004-03-07 Thread Sara Golemon
> Intresting for users that need such functions on several places in code and in > this case better as regexp in PHP itself. Why not take this ideas and put > together into ext/html(format)? > I agree with the statement that functions like these (and nl2br() itself) don't really belong in the PHP c

Re: [PHP-DEV] Function proposal: nl2p

2004-03-07 Thread Kai Schröder
On Sunday 07 March 2004 21:58, Stefan Walk wrote: > On Sun, Mar 07, 2004 at 01:07:08PM -0500, Louis-Philippe Huberdeau wrote: > > I wrote this very simple function (modification from nl2br actually) to > > convert newlines to well formatted HTML paragraphs instead of line > > breaks, allowing bette

Re: [PHP-DEV] Function proposal: nl2p

2004-03-07 Thread Stefan Walk
On Sun, Mar 07, 2004 at 01:07:08PM -0500, Louis-Philippe Huberdeau wrote: > I wrote this very simple function (modification from nl2br actually) to > convert newlines to well formatted HTML paragraphs instead of line > breaks, allowing better formatting of a dynamic output. It's not the > most p

Re: [PHP-DEV] Function proposal: nl2p

2004-03-07 Thread Markus Fischer
On Sun, Mar 07, 2004 at 01:07:08PM -0500, Louis-Philippe Huberdeau wrote : > /* {{{ proto string nl2p(string str) >Converts newlines to HTML paragraphs for standard compliance */ I'm not to judge whether this goes in or not, however using paragraphs is not more standard compliance tha

[PHP-DEV] Function proposal: nl2p

2004-03-07 Thread Louis-Philippe Huberdeau
I wrote this very simple function (modification from nl2br actually) to convert newlines to well formatted HTML paragraphs instead of line breaks, allowing better formatting of a dynamic output. It's not the most perfect piece of code ever written, but it works and it can be quite useful. The