From 5c271c8890f93ac73095588c8ce40c870aeb7583 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 26 Jan 2016 07:54:21 -0500 Subject: [PATCH] trim excess whitespace at end of html --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index b2bd449..2c7b66f 100755 --- a/index.js +++ b/index.js @@ -57,5 +57,5 @@ module.exports = function(input){ return html } - return parseFile(input); + return parseFile(input).trim(); };