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
escape " as ".
Closes
#58
tags/0.5.0-vsc
Jan Lehnardt
15 years ago
parent
0ae99e03ec
commit
d8f25f82bd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mustache.js
+ 1
- 1
mustache.js
View File
@@ -248,7 +248,7 @@ var Mustache = function() {
switch(s) {
case "&": return "&";
case "\\": return "\\\\";
case '"': return '
\"
';
case '"': return '
"
';
case "<": return "<";
case ">": return ">";
default: return s;
Write
Preview
Loading…
Cancel
Save