Metadata-Version: 2.1
Name: dmind
Version: 0.0.4
Summary: a mindmap tool for jupyter notebook
Home-page: https://github.com/dust8/dmind
Author: dust8
License: UNKNOWN
Description: 
        # DMind
        
            是一个思维导图插件
        `DMind` 是一个 `Jupyter notebook` 的思维导图插件.    
        利用百度脑图的开源库实现渲染, 支持 `json`, `markdown`, `text` 格式.
        
        
        ## 安装
        通过 `pip` 安装
        ```bash
            pip install dmind
        ```
        
        ## 使用
        ### text 格式
        ```
        %%dmind text
        
        DMind
            是一个 jupyter notebook 插件
            是一个思维导图插件
        ```
        ![text 格式](./images/1.png)
        
        
        ### markdown 格式, 逻辑结构图
        ```
        %%dmind markdown right
        
        # DMind使用文档
        ## 安装
        ### pip install dmind
        ## 使用
        ### 载入插件
        #### %load_ext dmind
        ### 载入需要的附件
        #### %dmindheader
        ### 渲染脑图
        #### %%dmind datatype template theme 换行后输入内容
        ```
        ![markdown 格式, 逻辑结构图](./images/2.png)
        
        ### json 格式 , 目录组织图, 文艺绿
        ```
        %%dmind json filetree fresh-green
        
        {
            "root": {
                "data": {
                    "text": "Dmind参数说明"
                },
                "children": [
        ...
        ```
        ![json 格式 , 目录组织图, 文艺绿](./images/3.png)
        
        
        
        [查看示例](./example/example.ipynb)
        
Keywords: dmind mind mindmap
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: IPython
Description-Content-Type: text/markdown
