From 158f4278370944877d886c2f92a258dd2c6e35a2 Mon Sep 17 00:00:00 2001 From: Ben Cherry Date: Thu, 2 Dec 2010 16:30:33 -0800 Subject: [PATCH] reenabled ' --- mustache.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mustache.js b/mustache.js index 8b4ba03..a85afd0 100644 --- a/mustache.js +++ b/mustache.js @@ -311,8 +311,7 @@ var Mustache = function() { case "&": return "&"; case "\\": return "\\\\"; case '"': return '"'; - // leaving this out temporarily, will need to fix twitter to work with this (good) change - // case "'": return '''; + case "'": return '''; case "<": return "<"; case ">": return ">"; default: return s;