You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_jm.get_data("freemind") does not seem to return the correct format for freemind or freeplane.
Specifically, the text color and background color do not come over.
jsmind puts them into attributes. I created a mini-mindmap with freemint and colored the text, and that is part of the node.
to add color, background color, but only if a color code, red or yellow does not work:
xmllines.push('TEXT="' + node.topic + '"');
// console.log("nodedata", node_data);
var node_data = node.data;
if (node_data != null) {
for (var k in node_data) {
if (k=="color")
xmllines.push(' COLOR="' + node_data[k] + '" ');
if (k=="background-color")
xmllines.push(' BACKGROUND_COLOR="' + node_data[k] + '" ');
}
}
xmllines.push('>');
_jm.get_data("freemind") does not seem to return the correct format for freemind or freeplane.
Specifically, the text color and background color do not come over.
jsmind puts them into attributes. I created a mini-mindmap with freemint and colored the text, and that is part of the node.
like
< node COLOR="#ff3333" CREATED="1726129088555" ID="ID_1126999578" MODIFIED="1726129132903" POSITION="right" TEXT="ö,l,öl,l"/>
the blank space above before node is needed in this forum, otherwise the node will not be shown in this issue.
The text was updated successfully, but these errors were encountered: