How do you append a newline in velocity template using set? This does not work.
#(set $some = "$a \n $b")
Prints literally \n.
Doing this also does not work :
VelocityContext context = new VelocityContext();
context.put("esc", new EscapeTool());
Velocity.evaluate(context, writer, "LOG", template);