Browse Source

remove the backslash escaping

tags/0.4.0
Ben Cherry 15 years ago
parent
commit
9110fe0061
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      mustache.js

+ 0
- 1
mustache.js View File

@@ -291,7 +291,6 @@ var Mustache = function() {
return s.replace(/&(?!\w+;)|["'<>\\]/g, function(s) {
switch(s) {
case "&": return "&amp;";
case "\\": return "\\\\";
case '"': return '&quot;';
case "'": return '&#39;';
case "<": return "&lt;";


Loading…
Cancel
Save