mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-05-20 12:22:18 +00:00
Add ability to read JSON files containing an array of tiddlers
This commit is contained in:
@@ -580,6 +580,12 @@ $tw.modules.registerModuleExports("$:/boot/tiddlerdeserializer/html","tiddlerdes
|
||||
return [fields];
|
||||
}
|
||||
});
|
||||
$tw.modules.registerModuleExports("$:/boot/tiddlerdeserializer/json","tiddlerdeserializer",{
|
||||
"application/json": function(text,fields) {
|
||||
var tiddlers = JSON.parse(text);
|
||||
return tiddlers;
|
||||
}
|
||||
});
|
||||
|
||||
// Install the tiddler deserializer modules so they are immediately available
|
||||
$tw.modules.applyMethods("tiddlerdeserializer",$tw.Wiki.tiddlerDeserializerModules);
|
||||
|
||||
Reference in New Issue
Block a user