From f3a9e4f3956e9e68f1a9bba89ca115627b41446f Mon Sep 17 00:00:00 2001 From: Ben Cherry Date: Tue, 30 Nov 2010 14:09:44 -0800 Subject: [PATCH] don't escape ' temporarily --- mustache.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mustache.js b/mustache.js index 58f06e6..6c109b5 100644 --- a/mustache.js +++ b/mustache.js @@ -313,7 +313,8 @@ var Mustache = function() { case "&": return "&"; 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 ">"; default: return s;