From 1e692855109530d0959bae8bebf906d5cf9cd528 Mon Sep 17 00:00:00 2001 From: Marek Lichtner Date: Wed, 13 Aug 2014 18:46:36 +0200 Subject: [PATCH] space before end of comment is not required And problem is if somebody generates html from jade and jade generate this comment without space before and of comment e.g.: --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index fda2105..7510de4 100644 --- a/index.js +++ b/index.js @@ -16,7 +16,7 @@ var placeholders = { }; function matchExpressions(contents) { - return contents.match(//); + return contents.match(//); } function replaceExtension(filename, type, options) { @@ -99,4 +99,4 @@ function gulpIncludeSource(options) { return stream; } -module.exports = gulpIncludeSource; \ No newline at end of file +module.exports = gulpIncludeSource;