///
Mind Map Wizard provides intuitive tools for editing and formatting your mind maps, allowing you to refine the structure and content generated by the AI or create new maps from scratch using standard
91 views
~91 views from guests
Guest views are estimated from total page views. These include anonymous visitors and users who weren't logged in when they viewed the page.
Mind Map Wizard provides intuitive tools for editing and formatting your mind maps, allowing you to refine the structure and content generated by the AI or create new maps from scratch using standard Markdown syntax.
Mind maps in Mind Map Wizard are built upon Markdown, where the number of # symbols at the beginning of a line dictates the hierarchical level of a branch. This makes it straightforward to organize your thoughts and concepts into a clear, visual structure.
Here's how Markdown syntax translates to mind map branches:
| Code | Rendered Mind Map |
|---|---|
# my mind map | ![]() |
## branch 1 | |
## branch 2 | |
### text | |
### text |
#) denotes the main topic.##) create a primary branch.###) create a sub-branch of the primary branch, and so on.Using this hierarchical structure, you can easily create and modify the relationships between ideas within your mind map.
Beyond structure, you can also apply various formatting styles to the text within your mind map branches to highlight important information or embed external content. The following Markdown syntax options are supported:
| Markdown Syntax | Rendered Result | Effect |
|---|---|---|
**example branch** | example branch | Bold text |
*example branch* | example branch | Italic text |
~~example branch~~ | Strikethrough | |
`example branch` | example branch | Code/monospace |
[Example Link](https://example.com) | Example Link↗ | Clickable link |
 | Image | Embedded image |
These formatting options allow for rich content representation, making your mind maps more informative and visually engaging.
Mind Map Wizard provides a dedicated editor to modify the Markdown source of your mind maps.
To begin editing a mind map:
Upon entering edit mode, the visual mind map view is replaced by a Markdown text area (powered by the toggleEditMode function in scripts/new.js). This text area is pre-populated with the current mind map's Markdown content (window.currentMarkdown), allowing you to directly manipulate its structure and formatting.
Once in edit mode, you can make any necessary changes to the Markdown text.
updateMindmapFromEdit function (in scripts/new.js) is responsible for processing and saving your edits. When triggered, it reads the new Markdown content from the text area.currentMarkdown variable and re-renders the mind map using the renderMindmap function (defined in scripts/mmw.js and scripts/new.js). This dynamic rendering ensures that your changes are immediately reflected in the visual mind map.mindmap-history in localStorage), ensuring that your revisions are preserved. The left sidebar history (managed by loadMindmapsLeftSidebar) will also refresh to reflect any changes.If you decide not to save your changes:
toggleEditMode(false) function (in scripts/new.js) is invoked, which hides the Markdown editor and brings the interactive mind map back into view, reverting to the last saved state if no new changes were committed.