From f862d856fcbeea0f04c5f5c65d5a922de478d2f1 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Fri, 21 Feb 2014 22:04:21 -0500 Subject: [PATCH] alright clearly, regex on fridays just don't happen for me. - fixed --- public/src/templates.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/templates.js b/public/src/templates.js index 0018b1e974..866e076302 100644 --- a/public/src/templates.js +++ b/public/src/templates.js @@ -281,7 +281,7 @@ } function makeRegex(block) { - return new RegExp("([\\s\\S]*?)", 'g'); + return new RegExp("[\\s\\S]*?", 'g'); } function makeConditionalRegex(block) {