1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Remove extraneous newline in HTML representation

This commit is contained in:
Jeremy Ruston 2013-02-09 17:07:52 +00:00
parent c76d038b8e
commit 114e8f4145

View File

@ -149,7 +149,7 @@ ElementRenderer.prototype.render = function(type) {
}
});
if(isHtml) {
output.push("</",this.widget.tag,">\n");
output.push("</",this.widget.tag,">");
}
}
return output.join("");