Add trailing newline to generated docs.

This commit is contained in:
John-David Dalton
2016-08-07 14:40:28 -07:00
parent 5f244d3c31
commit 826975f392

View File

@@ -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);