Commit e17578be authored by Ronny's avatar Ronny

添加链接支持

parent 5844741a
......@@ -41,6 +41,11 @@ KityMinder.registerProtocal( 'freemind', function () {
}
}
// 处理超链接
if(topic.LINK){
obj.data.hyperlink = topic.LINK;
}
//处理子节点
if( topic.node ){
......@@ -64,6 +69,7 @@ KityMinder.registerProtocal( 'freemind', function () {
var json = $.xml2json(xml);
var result = {};
processTopic(json.node, result);
console.log(result);
return result;
}
......
......@@ -43,6 +43,11 @@ KityMinder.registerProtocal( 'mindmanager', function () {
}
}
// 处理超链接
if ( topic.Hyperlink ) {
obj.data.hyperlink = topic.Hyperlink.Url;
}
//处理子节点
if ( topic.SubTopics && topic.SubTopics.Topic ) {
......@@ -64,8 +69,11 @@ KityMinder.registerProtocal( 'mindmanager', function () {
function xml2km( xml ) {
var json = $.xml2json( xml );
var result = {};
processTopic( json.OneTopic.Topic, result );
console.log(result);
return result;
}
......
......@@ -48,6 +48,11 @@ KityMinder.registerProtocal( 'xmind', function () {
}
}
// 处理超链接
if(topic['xlink:href']){
obj.data.hyperlink = topic['xlink:href'];
}
//处理子节点
if( topic.children && topic.children.topics && topic.children.topics.topic ){
var tmp = topic.children.topics.topic;
......
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