Skip to content

Commit

Permalink
Partially revert feed4b2
Browse files Browse the repository at this point in the history
  • Loading branch information
dnalborczyk committed Jul 7, 2019
1 parent 644e45b commit f341e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderVelocityTemplateObject.js
Expand Up @@ -23,7 +23,7 @@ function renderVelocityString(velocityString, context) {
// Quick args explanation:
// { escape: false } --> otherwise would escape &, < and > chars with html (&amp;, &lt; and &gt;)
// 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,
Expand Down

0 comments on commit f341e8c

Please sign in to comment.