Interactive mind maps for MarkEdit, powered by Markmap.
Install this extension from the MarkEdit Extension Registry.
Choose Extensions > Mind Map or press Shift-Control-M to toggle the mind map. Press Escape or use the close button in the map toolbar to return to the editor.
The toolbar provides zoom, fit, export, and close controls. The map also fits automatically after resizing the window. Panning, zooming, branch expansion, links, inline formatting, code, math, and other Markmap-supported Markdown features remain interactive.
Add an extension.markeditMindmap node to MarkEdit's settings.json:
{
"extension.markeditMindmap": {
"autoFit": true,
"colorScheme": "auto",
"toolbar": true,
"updateDelay": 200,
"hotKey": {
"key": "M",
"modifiers": ["Shift", "Control"]
},
"markmap": {
"initialExpandLevel": -1,
"maxWidth": 0,
"spacingHorizontal": 80,
"spacingVertical": 5
}
}
}autoFit: Fit the map after document updates. The map is always fitted when opened.colorScheme: Use"auto","light", or"dark". Automatic mode follows the system appearance.toolbar: Show the zoom, fit, export, and close controls.updateDelay: Delay live updates by this many milliseconds.hotKey: Set the main menu keyboard shortcut using MarkEdit's hotkey format.markmap: Set Markmap view options, includingcolor,colorFreezeLevel,duration,fitRatio(default0.85),initialExpandLevel,lineWidth,maxInitialScale,maxWidth,nodeMinHeight,paddingX,pan,spacingHorizontal,spacingVertical, andzoom.
Standard markmap front matter in a document overrides the global markmap settings for that document.
yarn install
yarn buildyarn build also deploys the extension to your local MarkEdit installation.