Overview
Mindmap diagrams in Sirena visualize hierarchical information and ideas in a radial tree structure. They help organize thoughts, concepts, and relationships in a visual format that mirrors how we naturally think and make connections.
Mindmaps are useful for:
-
Brainstorming and idea generation
-
Organizing project requirements
-
Creating study guides and learning materials
-
Documenting system architectures
-
Planning and strategic thinking
-
Note-taking and knowledge mapping
Syntax specification
Diagram declaration
Mindmaps are declared using the mindmap keyword:
mindmap
<root-node>
<child-nodes>
Nodes
Node shapes
Nodes can have different visual shapes using special markers:
| Shape | Syntax | Description |
|---|---|---|
Default (Rounded) |
|
Plain text creates a rounded rectangle |
Circle |
|
Double parentheses create a circle |
Cloud |
|
Parentheses reversed create a cloud shape |
Bang |
|
Double reversed parentheses create an emphasized cloud |
Hexagon |
|
Double curly braces create a hexagon |
Square |
|
Square brackets create a rectangle |
Icons and classes
Icons
Add icons to nodes using the ::icon() syntax:
mindmap
root[Project]
::icon(fa fa-folder)
Documentation
::icon(fa fa-book)
Where:
::icon(name)-
Icon identifier placed on the line after the node
Examples
Simple mindmap
mindmap
Central Idea
Branch 1
Detail 1.1
Detail 1.2
Branch 2
Detail 2.1
Branch 3
This creates a simple mindmap with:
-
One root node (Central Idea)
-
Three main branches
-
Various details under branches
Mindmap with shapes
mindmap
root((Project Goals))
Features
)Must Have(
Login
Dashboard
)Nice to Have(
Dark Mode
Notifications
Timeline
{{Q1}}
Planning
Design
{{Q2}}
Development
{{Q3}}
Testing
{{Q4}}
Launch
Resources
[Team]
[Budget]
[Tools]
This demonstrates:
-
Circle root for main concept
-
Cloud shapes for priority categories
-
Hexagons for time periods
-
Squares for resources
-
Plain text for details
Research topics mindmap
mindmap
root((Research Topic))
Literature Review
::icon(fa fa-book)
Historical Context
Current Studies
Key Authors
Methodology
::icon(fa fa-flask)
Qualitative Methods
Quantitative Methods
Mixed Methods
Data Collection
::icon(fa fa-database)
Surveys
Interviews
Observations
Analysis
::icon(fa fa-chart-bar)
Statistical Tools
Coding Framework
This shows:
-
Icons indicating the type of content
-
Clear hierarchical organization
-
Subject-specific categorization
Software architecture mindmap
mindmap
root((Application))
Frontend
{{React}}
Components
State Management
Routing
{{Styling}}
CSS Modules
Tailwind
Backend
{{Node.js}}
Express
APIs
Middleware
{{Database}}
PostgreSQL
Redis Cache
Infrastructure
{{Cloud}}
AWS EC2
S3 Storage
{{CI/CD}}
GitHub Actions
Docker
This illustrates:
-
Technology stack organization
-
Component relationships
-
Infrastructure layers
Learning roadmap
mindmap
root((Web Development))
Fundamentals
HTML
Semantic Markup
Forms
Accessibility
CSS
Layouts
Responsive Design
Animations
JavaScript
ES6+ Features
DOM Manipulation
Async Programming
Frameworks
React
Vue
Angular
Backend
Node.js
Python
Databases
DevOps
Git
CI/CD
Cloud Platforms
This shows:
-
Progressive learning path
-
Skill categorization
-
Topic dependencies
Project planning mindmap
mindmap
root((Website Redesign))
))Phase 1: Discovery((
User Research
Surveys
Interviews
Competitor Analysis
Requirements
))Phase 2: Design((
Wireframes
Mockups
Design System
Prototype
))Phase 3: Development((
Frontend Build
Backend Integration
Testing
QA
))Phase 4: Launch((
Deployment
Monitoring
User Training
This demonstrates:
-
Bang shapes for major phases
-
Sequential workflow visualization
-
Deliverables per phase
Features
Indentation-based hierarchy
Hierarchy is determined by indentation level:
mindmap
root
level 1
level 2
level 3
level 4
Use consistent indentation (2 or 4 spaces per level).
Flexible tree depth
Mindmaps support unlimited nesting levels:
mindmap
root
branch
sub-branch
detail
sub-detail
deep-detail
Limitations
Best practices
Keep the root concise
Use a clear, focused root concept:
%% Good
mindmap
root((Product Strategy))
%% Too broad
mindmap
root((Everything About Our Company And All Its Products))
Use shapes meaningfully
Apply shapes consistently to indicate node types:
mindmap
root((Main Goal))
{{Category 1}} %% Hexagons for categories
[Action Item] %% Squares for actions
[Action Item]
{{Category 2}}
[Action Item]
[Action Item]
Limit depth
Keep hierarchies manageable (typically 3-4 levels):
%% Good - Clear and scannable
mindmap
root
branch
detail
detail
%% Too deep - Hard to follow
mindmap
root
branch
sub-branch
detail
sub-detail
deep-detail
very-deep-detail
Group related concepts
Organize related ideas under common branches:
mindmap
root((Project))
Technical Requirements
Performance
Security
Scalability
Business Requirements
Budget
Timeline
ROI
Use consistent indentation
Choose 2 or 4 spaces and use it throughout:
%% Good - Consistent 2-space
mindmap
root
level-1
level-2
level-3
%% Inconsistent - Avoid
mindmap
root
level-1
level-2
level-3