18 Sep
2009
18 Sep
'09
11:06 a.m.
In general I think the best rule is to not mix velocity macro and wiki syntax as much as possible. -Vincent On Sep 18, 2009, at 1:00 PM, Vincent Massol wrote:
Hi everyone,
Example:
----- %> cut here -------- ... something #end ## some comment
{{warning..../}} ----- %> cut here --------
Quizz: Will the macro be inline or standalone? Answer: inline
Reason is that velocity will start by removing the comment, which will leave a whitespace after the #end
Thus you'll get: something + NL + (space) + NL + warning macro
Thus since there are no 2 NLs before the macro it's going to be inline!
Thanks -Vincent