RE: Breaking space in an [$ if $] block

2007-06-25 Thread Ben Kim
ABC[$ if (1==1) $] [$ endif $]123 ABC[+(1==1)?" ":""+]123 Ben K. Developer http://benix.tamu.edu - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Breaking space in an [$ if $] block

2007-06-25 Thread Lars Kelto
He wants it conditional on the if. Try: ABC[$ if (1==1) $] [$ endif $]123 Seems to work for me. Lars -Original Message- From: Gavin Spomer [mailto:[EMAIL PROTECTED] Sent: Monday, June 25, 2007 11:26 AM To: [email protected] Subject: Re: [SPAM] Breaking space in an [$ if $

Re: [SPAM] Breaking space in an [$ if $] block

2007-06-25 Thread Gavin Spomer
Not quite sure what you mean by "breakable" space (as in "line break"?), but if you put a space immediately after the character 'C' in your example: ABC [$ if (1==1) $] [$ endif $]123 it will output: ABC 123 Is that what you wanted or have I misunderstood you? Gavin Spomer Systems Progr

Breaking space in an [$ if $] block

2007-06-25 Thread Michael Smith
Hi there, I want to create a breakable space within my HTML. Here's a short example: ABC[$ if (1==1) $] [$ endif $]123 which outputs ABC123 .. with no space despite there being a space in between [$ if $] and [$ endif $] I know I can put an   but I actually want a breakable space. Is there