diff --git a/src/renderVelocityTemplateObject.js b/src/renderVelocityTemplateObject.js index f251b012c..8ccd59358 100644 --- a/src/renderVelocityTemplateObject.js +++ b/src/renderVelocityTemplateObject.js @@ -23,7 +23,7 @@ function renderVelocityString(velocityString, context) { // Quick args explanation: // { escape: false } --> otherwise would escape &, < and > chars with html (&, < and >) // render(context, null, true) --> null: no custom macros; true: silent mode, just like APIG - new Compile(parse(velocityString), { escape: true }).render( + new Compile(parse(velocityString), { escape: false }).render( context, null, true,