diff --git a/js/gitstatus.js b/js/gitstatus.js index 73ae7f4..0a5c7fb 100644 --- a/js/gitstatus.js +++ b/js/gitstatus.js @@ -204,7 +204,7 @@ * @returns String, parsed/replaced template. */ render: function(template, context) { - for(x in context) template = template.replace(new RegExp('{{' + x + '}}', 'g'), context[x].replace(//, '>')); + for(x in context) template = template.replace(new RegExp('{{' + x + '}}', 'g'), context[x]); return template; } };