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

Changed default type for typed blocks to be text/plain

This commit is contained in:
Jeremy Ruston 2012-07-18 14:28:17 +01:00
parent 3eb1eb3de8
commit c1e33ccacb

View File

@ -48,7 +48,7 @@ exports.parse = function(match,isBlock) {
text = this.source.substr(this.pos);
this.pos = this.sourceLength;
}
var renderer = this.wiki.parseText(mimeType,text);
var renderer = this.wiki.parseText(mimeType,text,{defaultType: "text/plain"});
this.dependencies.mergeDependencies(renderer.dependencies);
return renderer.tree;
} else {