https://github.com/dust8/dmind
jupyter notebook 的思维导图插件
https://github.com/dust8/dmind
dmind ipython jupyter mindmap notebook
Last synced: 14 days ago
JSON representation
jupyter notebook 的思维导图插件
- Host: GitHub
- URL: https://github.com/dust8/dmind
- Owner: dust8
- License: mit
- Created: 2018-10-03T01:20:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-27T04:56:53.000Z (almost 5 years ago)
- Last Synced: 2025-10-02T15:37:55.535Z (5 months ago)
- Topics: dmind, ipython, jupyter, mindmap, notebook
- Language: Jupyter Notebook
- Size: 204 KB
- Stars: 22
- Watchers: 1
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DMind
`DMind` 是一个 `Jupyter notebook` 的思维导图插件.
利用百度脑图的开源库实现渲染, 支持 `json`, `markdown`, `text` 格式.
## 安装
通过 `pip` 安装
```bash
pip install dmind
```
## 使用
### 引入插件相关
载入 dmind 插件
```
%load_ext dmind
```
载入 dmind 需要的附件
```
%dmindheader
```
### text 格式
```
%%dmind text
DMind
是一个 jupyter notebook 插件
是一个思维导图插件
```

### markdown 格式, 逻辑结构图
```
%%dmind markdown right
# DMind使用文档
## 安装
### pip install dmind
## 使用
### 载入插件
#### %load_ext dmind
### 载入需要的附件
#### %dmindheader
### 渲染脑图
#### %%dmind datatype template theme 换行后输入内容
```

### json 格式 , 目录组织图, 文艺绿
```
%%dmind json filetree fresh-green
{
"root": {
"data": {
"text": "Dmind参数说明"
},
"children": [
...
```

[查看示例](./example/example.ipynb)