Mindmaps
What are Mind Maps?
Mermaid's mind maps help you visually organize ideas into hierarchical structures. For data teams, they're excellent for brainstorming project requirements, planning data models, documenting processes, and organizing complex concepts. Each mind map starts with a central idea, with related concepts branching out in a hierarchical structure.
Creating Your First Mind Map
From the Code IDE, Click Apps and Agents from the lefthand panel
Select Mermaid. Paradime will automatically start a new mermaid project
In the terminal that appears, use the arrow keys to select "Mind Maps"
A new
mindmap.mmd
file will be created in your editor with this starter template:
Click the eye icon (👁️) in the top right corner of your Mermaid file to preview the diagram
Edit and update your
.mmd
file as needed - the preview will update automatically
Diagram Syntax Guide
Basic Structure
Mind maps use indentation to create hierarchy:
Node Shapes
You can use different shapes for nodes:
Square:
id[text]
Rounded Square:
id(text)
Circle:
id((text))
Cloud:
id)text(
Bang:
id))text((
Hexagon:
id{{text}}
Default: Just text
Text Formatting
Use Markdown syntax for text formatting:
Data Team Examples
Project Planning
Data Model Documentation
Best Practices
Start with a clear central concept
Use consistent indentation
Group related ideas together
Limit hierarchy depth for clarity
Use shapes to differentiate concept types
Keep node text concise
Advanced Features
Icons
Add icons to nodes (when configured):
CSS Classes
Apply custom styling:
Additional Resources
For more syntax options and advanced features, visit the official Mermaid documentation
Mind Maps are an experimental feature in Mermaid. While the basic syntax is stable, some features like icon integration may change in future releases.
Last updated