kityminder
Version:
17 lines (14 loc) • 388 B
JavaScript
KityMinder.registerProtocol('json', function(minder) {
return {
fileDescription: 'KityMinder 格式',
fileExtension: '.km',
dataType: 'text',
mineType: 'application/json',
encode: function(json) {
return JSON.stringify(json);
},
decode: function(local) {
return JSON.parse(local);
}
};
});