Commit 44cd74e7 authored by techird's avatar techird

framework

parent 6f062454
/**
* @fileOverview
*
* Markdown 格式导入导出支持
*
* @author: techird
* @copyright: Baidu FEX, 2014
*/
KityMinder.registerProtocol('markdown', function() {
function encode(json) {
}
function decode(markdown) {
}
return {
fileDescription: 'Markdown/GFM 格式',
fileExtension: '.md',
mineType: 'text/markdown',
dataType: 'text',
encode: function(json) {
return encode(json);
},
decode: function(markdown) {
return decode(markdown);
},
recognizePriority: -1
};
});
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment