JS 專案拾粹 六: 將 Markdown 轉為思維導圖的開源工具

Plain發表於2020-07-01

專案 github 地址

JS 專案拾粹 六: 將 Markdown 轉為思維導圖的開源工具

以下引自專案文件

將Markdown視覺化為思維導圖。

該專案受到Markmap的極大啟發。

必須安裝Node.js> = 10。

命令列

安裝

全域性安裝:

$ yarn global add markmap-lib

# 或

$ npm install markmap-lib -g

或 用 npx:

$ npx markmap-lib

指令

Usage: markmap [options] <input>

Create a markmap from a Markdown input file

Options:
  -V, --version          output the version number
  -o, --output <output>  specify filename of the output HTML
  --enable-mathjax       enable MathJax support
  --enable-prism         enable PrismJS support
  --no-open              do not open the output file after generation
  -h, --help             display help for command

以 note.md 來舉例

執行以下命令以獲取互動式思維導圖:

$ markmap note.md

# 無需全域性安裝
$ npx markmap-lib note.md

然後,我們在同一目錄生成 note.html,並且它將在您的預設瀏覽器中開啟。
更多用法詳見 專案文件

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章