LoginSignup
14
11

More than 3 years have passed since last update.

MarkdownでMindmapを描く

Posted at

概要

markmap-libというNodeライブラリーを使って、Markdownの箇条書きをMindmapのHTMLを簡単に変換できます。

Github: https://github.com/gera2ld/markmap-lib

下記の内容を変換すると、

# Engineering Roadmap
## Frontend
### HTML
### CSS
### JavaScript

- Basic
- ES6
- TypeScript
- Frameworks
    - React.js
    - Vue.js
- Libraries
    - Material-ui

### SVG

## Backend
### Programming

- Python
    - Basic
    - Flask
    - ORM

### Server

- Nginx

## DevOps
### Docker

以下のイメージになります。

スクリーンショット 2020-04-11 17.59.32.png

インストールと使用

# install
npm i markmap-lib -g

# markdown を作成
touch mindmap1.md
# Markdownを書く

# MindMapを作成
markmap mindmap1.md --output mindmap1.html

参考

https://github.com/gera2ld/markmap-lib
https://github.com/dundalek/markmap

14
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
11