On Tue, Sep 10, 2002 at 10:19:51AM -0500, Charlie Hills wrote: > [$ if (this) $] * some text > [$ endif $] > > [$ if (that) $] * some other text > [$ endif $]
> I even tried tossing in a [- print "\n" -] statement, to no avail! Realize that that is only making a hard break in the html document that then gets parsed by the browser.. HTML doesn't recognize whitespace in the document itself without a <pre> (preformatted) tag. So you could do one of two things: [$ if (blah) $] text1 [$ endif $] <br> [$ if (blah2) $] text2 [$ endif $] or use <pre> .. </pre> tags, but that's just wrong :) Nate Smith --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
