views:

107

answers:

1

How to remove the whitespace line generat by @code{}, @if{}, @foreach{}, @end{} ect Orb Tags in the result of MVEL 2.0 Templating ? ? ? ?

A: 

If you don't want whitespace before and after the tags, then don't CR before and after:

for example: Items: @foreach{item : stuff}@{item}@{','}

If you break it onto multiple lines, the whitespace is preserved.

Mike Brock