From 826975f392c7a037b23ed637f48c4c221890e8c5 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 7 Aug 2016 14:40:28 -0700 Subject: [PATCH] Add trailing newline to generated docs. --- lib/main/build-site.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/main/build-site.js b/lib/main/build-site.js index b383dfb2c..37c1ab045 100644 --- a/lib/main/build-site.js +++ b/lib/main/build-site.js @@ -63,7 +63,8 @@ function build(type) { // Wrap in raw tags to avoid Liquid template tag processing. '{% raw %}', _.trim($.html()), - '{% endraw %}' + '{% endraw %}', + '' ].join('\n'); fs.writeFile(path.join(docPath, version + '.html'), html, util.pitch);