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;