1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-01 08:20:46 +00:00

Use the plain text parser to display HTML files

We could display the HTML in an IFRAME but I think that's often not
what people want
This commit is contained in:
Jeremy Ruston 2012-11-18 14:57:10 +00:00
parent addef09d1c
commit 41db3d89ae

View File

@ -21,5 +21,6 @@ PlainTextParser.prototype.parse = function(type,text) {
};
exports["text/plain"] = PlainTextParser;
exports["text/html"] = PlainTextParser;
})();