This website works better with JavaScript.
Home
Explore
Help
Sign In
jan
/
mustache.js
mirror of
https://github.com/janl/mustache.js
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
46
Wiki
Activity
Browse Source
remove the backslash escaping
tags/0.4.0
Ben Cherry
15 years ago
parent
42e06a5aac
commit
9110fe0061
1 changed files
with
0 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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 "&";
case "\\": return "\\\\";
case '"': return '"';
case "'": return ''';
case "<": return "<";
Write
Preview
Loading…
Cancel
Save