From 97aa4b8da956acdabb665fce6b0991fe52dc5bb9 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 22 Jan 2016 10:58:37 -0500 Subject: [PATCH] adding html and body tags --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 98642b1..7f6550a 100755 --- a/index.js +++ b/index.js @@ -61,7 +61,9 @@ fs.readFile(process.argv[2], 'utf8', function(err, data){ console.log(err); } else { parseFile(data, function(html){ + console.log(''); console.log(html); + console.log(''); }); } });