diff --git a/test/_files/escaped.js b/test/_files/escaped.js index e60095960..4276a39cd 100644 --- a/test/_files/escaped.js +++ b/test/_files/escaped.js @@ -2,5 +2,6 @@ title: function () { return "Bear > Shark"; }, + symbol: null, entities: "" \"'<>`=/" }) diff --git a/test/_files/escaped.mustache b/test/_files/escaped.mustache index 93e800b31..5c44268ad 100644 --- a/test/_files/escaped.mustache +++ b/test/_files/escaped.mustache @@ -1,2 +1,2 @@ -

{{title}}

+

{{title}}{{symbol}}

And even {{entities}}, but not {{{entities}}}. diff --git a/test/_files/unescaped.js b/test/_files/unescaped.js index b6d064f12..0659b69d0 100644 --- a/test/_files/unescaped.js +++ b/test/_files/unescaped.js @@ -1,5 +1,6 @@ ({ title: function () { return "Bear > Shark"; - } + }, + symbol: null }) diff --git a/test/_files/unescaped.mustache b/test/_files/unescaped.mustache index 6b07d7b71..1a27f587b 100644 --- a/test/_files/unescaped.mustache +++ b/test/_files/unescaped.mustache @@ -1 +1 @@ -

{{{title}}}

+

{{{title}}}{{{symbol}}}