I'm new and struggling with velocity templates. I have few templates in hand with lots of macros in it.
// file b.vm
#macro (bmacro)
from b macro
#end
// file a.vm
#parse("//temp//b.vm")
from a
#bmacro()
My expectation is to get
from a
from b macro
however, I am getting only "from a" as outcome. But when I place any static text outside bmacro, it is getting along.
By the way, I'm using NVelocity from castle project.
Thanks