Mindtree
Render mindmap from indented text or markdown formatted text
Install / Use
/learn @bluzky/MindtreeREADME
Mindtree
Mindtree is a library which helps to visualize your text content as a mind map. Currently, Mindtree support indented text, markdown support is on the road map.
- Home page
- Installation
- Basic usage
- Document - comming soon
Installation
- Install from npm
yarn add @bluzky/mindtree
- Add to your project assets
Just copy
mindtree.jsto your assets directory
Basic usage
You have to follow these steps to render a mindmap:
- Build mind map data represented as a hierarchy tree
- Which layout you want to render as
- Build a
Mindmapobject fromdataandlayout - Bind a
Viewerto a DOM element and renderMindmap
1. Vanilla javascript
Add this to your html
<script src="mindtree.js"></script>
var text = `
Root
- branch 1
+branch 1.1
- branch 2
branch 2.1
* branch 2.2
branch 2.2.1
-Branch 3
- alo
- ola
- ollala
-Branch 4
- Branch 4.1
- Branch 4.1.1
- Branch 4.2
- Branch 4.3`;
// parse indented text to hierarchy tree
var data = mindtree.Parsers.TextParser.parse(text);
// choose a layout
var MindmapLayout = mindtree.MindmapLayouts.Standard;
// build Mindmap object
var mindMap = new mindtree.MindMap(data.root, MindmapLayout, {});
mindMap.build();
// binding viewer and render
var viewer = new mindtree.Viewer("#drawing", {});
viewer.render(mindMap);
2. With ES6
Import required classes
import { MindMap, Viewer, Parsers, MindmapLayout } from "mindtree";
And then follows the same steps as above
Features
-
Parser - Indented text
-
Layout - Standard - RightLogical
- DownwardOrganizational
- UpwardOrganizational
- LeftLogical
Credits
-
Thanks [leungwensen](https://github.com/leungwensen), This library is inspired by his repo [Mindmap layouts](https://github.com/leungwensen/mindmap-layouts). And I still copy the layout code from his source -
Thanks @stetrevor for his library non-layered-tidy-tree-layout
-
This project use two.js for the rendering mindmap.
Related Skills
node-connect
343.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
90.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
343.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
343.1kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
