Open mindmap view in a new tab using ctrl + shift + P then syb mindmap.
Open json or yaml file and start editing the mindmap.
Usage
YAML format
$schema: https://raw.githubusercontent.com/sybernatus/syb-mindmap/develop/assets/schemas/mindmap.schema.yaml
data:
text: My Mindmap
children:
- text: My first element
children:
- text: View my topic
image:
path: "./assets/my-img.png"
width: 100
Json format
{
"$schema": "https://raw.githubusercontent.com/sybernatus/syb-mindmap/develop/assets/schemas/mindmap.schema.yaml",
"data": {
"text": "My Mindmap",
"children": [
{
"text": "My first element",
"children": [
{
"text": "View my topic",
"image": {
"path": "./assets/my-img.png",
"width": 100
}
}
]
}
]
}
}