Last updated
Creating a Project Planning Mind Map
Start with "Website Redesign" as the central topic, then add main branches:
Central: Website Redesign
├── Design
│ ├── Color palette
│ ├── Typography
│ └── Component library
├── Development
│ ├── Frontend framework
│ ├── CMS integration
│ └── Performance targets
├── Content
│ ├── Copywriting
│ ├── Image assets
│ └── SEO strategy
└── Launch
├── Testing
├── Staging review
└── Go-live checklist
Each branch gets a distinct color — blue for Design, green for Development, orange for Content, red for Launch. The radial layout spreads all four branches evenly around the center for a balanced visual.
Brainstorming Session Mind Map
Use the fast-capture keyboard shortcuts during a brainstorming session:
- Press
Tabto add a child node to the selected node - Press
Enterto add a sibling node at the same level - Press
Shift+Tabto move up to the parent node - Press
Deleteto remove the selected node - Press
F2to rename the selected node
This keyboard-driven workflow lets you capture ideas at the speed of thought without switching between keyboard and mouse. In a 30-minute brainstorm, you can build a mind map with 50+ nodes.
Converting a Text Outline to a Mind Map
Paste this Markdown outline into the import field:
# Machine Learning Pipeline
## Data Collection
- Web scraping
- API integration
- Manual labeling
## Preprocessing
- Cleaning
- Normalization
- Feature engineering
## Model Training
- Algorithm selection
- Hyperparameter tuning
- Cross-validation
## Deployment
- Model serving
- Monitoring
- Retraining schedule
The generator converts the heading hierarchy into a mind map automatically. H1 becomes the central node, H2 headings become main branches, and list items become sub-branches.
Meeting Notes Mind Map
Capture a team meeting in mind map format:
Central: Q2 Planning Meeting — March 17
├── Goals
│ ├── Launch mobile app (April 30)
│ ├── Reach 10k users
│ └── Reduce churn by 15%
├── Blockers
│ ├── Backend API delays
│ └── Design resource shortage
├── Action Items
│ ├── [name] — finalize API spec by March 20
│ ├── [name] — hire contract designer
│ └── [name] — set up analytics dashboard
└── Next Meeting
└── March 24, 10am
Add relationship arrows from "Backend API delays" to "Launch mobile app" to show the dependency. Export as PNG and share in the team Slack channel.
Study Notes Mind Map
Organize study material for a computer networking topic:
Central: OSI Model
├── Layer 7 — Application
│ ├── HTTP, HTTPS
│ ├── FTP, SMTP
│ └── DNS
├── Layer 4 — Transport
│ ├── TCP (reliable, ordered)
│ └── UDP (fast, unreliable)
├── Layer 3 — Network
│ ├── IP addressing
│ ├── Routing
│ └── ICMP
└── Layer 2 — Data Link
├── MAC addresses
├── Ethernet
└── Switches
Use focus mode to study one layer at a time. Click on "Layer 4 — Transport" and focus mode hides all other branches, letting you concentrate on TCP vs UDP without distraction.
Fishbone Diagram for Root Cause Analysis
Switch to fishbone (Ishikawa) diagram style to analyze why a deployment failed:
Effect: Production deployment failed
Causes:
├── People
│ ├── Insufficient testing
│ └── No deployment checklist
├── Process
│ ├── No staging environment
│ └── Manual deployment steps
├── Technology
│ ├── Outdated CI/CD pipeline
│ └── Missing rollback procedure
└── Environment
├── Config differences between staging and prod
└── Database migration not tested
The fishbone style arranges causes along diagonal branches pointing to the effect on the right. This format is standard in root cause analysis and post-mortem documentation.
Product Feature Mind Map
Plan a new feature with a mind map before writing the spec:
Central: User Authentication
├── Sign Up
│ ├── Email + password
│ ├── Google OAuth
│ └── Email verification
├── Sign In
│ ├── Remember me
│ ├── Forgot password flow
│ └── 2FA (TOTP)
├── Session Management
│ ├── JWT tokens
│ ├── Refresh token rotation
│ └── Logout all devices
└── Security
├── Rate limiting
├── Brute force protection
└── Audit logging
Add a note to the "2FA (TOTP)" node: "Use authenticator app — no SMS due to SIM swap risk." Notes appear as a tooltip when hovering over the node.
Presentation Mode Example
Use presentation mode to walk stakeholders through a roadmap mind map:
- Slide 1 — Central node only: "2024 Product Roadmap"
- Slide 2 — Reveal Q1 branch: "Q1: Core Infrastructure"
- Slide 3 — Expand Q1 sub-branches: API v2, Database migration, Performance
- Slide 4 — Reveal Q2 branch: "Q2: User Growth Features"
- Slide 5 — Expand Q2 sub-branches: Referral program, Onboarding redesign
Each slide reveals one branch at a time, keeping the audience focused on the current topic rather than reading ahead.
Exporting a Mind Map
Export options and their best use cases:
- PNG — Share in chat, embed in documents, use in presentations
- SVG — Embed in web pages, import into Figma or Illustrator for further editing
- PDF — Print for physical reference, attach to project documentation
- JSON — Save and reopen in the generator for future editing
<!-- Embedding an SVG mind map in a web page -->
<figure>
<img src="project-roadmap-mindmap.svg" alt="Project roadmap mind map showing Q1 through Q4 goals">
<figcaption>2024 Product Roadmap</figcaption>
</figure>
Using Relationship Arrows
Connect non-adjacent nodes to show cross-branch relationships:
Central: Software Architecture
├── Frontend
│ └── React components ──────────────────┐
├── Backend │ (relationship arrow)
│ └── REST API ──────────────────────────┤
└── Database │
└── PostgreSQL ◄──────────────────────┘
(all three are connected in the data flow)
Relationship arrows are drawn as curved lines with labels. Add a label like "calls" or "reads from" to make the relationship explicit. These connections show dependencies that the tree structure alone cannot represent.