Steve Ruby wrote:
> 
> Jason van Zyl wrote:
> >
> > > yah, a little hacky but i like it ... in VTL, however, since there are no
> > > delimiters for keywords except whitespace, i can't do it ... If i try:
> > >
> > > <FONT color="#if($Error)red#elseblack#endif">
> >
> > #if($Error)red#elseblack#end">
> >
> > There is no #endif
> 
> Something similar on my end did not render properly as
> above, it actually printed out #elseblack
> 
> something like this worked with no extra space in the output
> 
> #if($Error)red#else black#end">

How about 

#set ($black = "black")
<font color="#if($Error)red#else$black#end">

Reply via email to