使用jupyter nbconvert转换jupyter notebook笔记为Markdown格式
nbconvert
Jupyter Notebook Conversion
用法
$ jupyter nbconvert --to <output format> <input notebook>
- 其中:
-* HTML -* LaTeX -* PDF -* Reveal JS -* Markdown (md) -* ReStructured Text (rst) -* executable script
例子: Convert a notebook to HTML
$ jupyter nbconvert --to html mynotebook.ipynb
This command creates an HTML output file named mynotebook.html
.