// https://github.com/hizzgdev/jsmind
console.clear()
var mind = {
"meta": {
"name": "example",
"author": "hizzgdev",
"version": "0.2"
},
"format": "node_tree",
"data": {
"id": "root",
"topic": "jsMind",
"children": [
{"id": "sub1", "topic": "sub1"},
{"id": "sub2", "topic": "sub2"}
]
}
};
var options = {
container: 'jsmind_container',
theme: 'orange',
editable: true,
};
var jm = new jsMind(options);
jm.show(mind);
<div id="jsmind_container" style="width: 500px; height: 500px;"></div>