Removed extra newline required for cook.rb compatibility

We're now trying to be compatible with TiddlyWiki itself
This commit is contained in:
Jeremy Ruston 2011-12-03 12:01:08 +00:00
parent ffe31fbb11
commit cfa448f712
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ tiddlerOutput.outputTiddlerDiv = function(tid) {
break;
}
}
result.push(">\n<pre>\n");
result.push(">\n<pre>");
result.push(utils.htmlEncode(tid.fields.text));
result.push("</pre>\n</div>");
return result.join("");