1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-27 14:48:19 +00:00

Parse JSON as text so that it doesn't generate missing tiddlers

This commit is contained in:
Jeremy Ruston 2013-03-19 18:26:55 +00:00
parent d0c87c679a
commit 5a6c2b91f8

View File

@ -26,6 +26,7 @@ var TextParser = function(type,text,options) {
exports["text/plain"] = TextParser;
exports["text/html"] = TextParser;
exports["application/javascript"] = TextParser;
exports["application/json"] = TextParser;
})();