Skip to content

Commit 263a2a5

Browse files
committed
Add newline to end of page returned.
1 parent 0b4542a commit 263a2a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/page2mml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ function processHTML(html,callback) {
104104
xmlns:xmlns
105105
}, function (result) {
106106
document.body.innerHTML = result.html;
107-
var HTML = "<!DOCTYPE html>\n"+document.documentElement.outerHTML.replace(/^(\n|\s)*/,"");
107+
var HTML = "<!DOCTYPE html>\n"+document.documentElement.outerHTML.replace(/^(\n|\s)*/,"")+"\n";
108108
callback(HTML);
109109
});
110110
}

0 commit comments

Comments
 (0)