Pluto2Jupyter converts Pluto Notebooks to Jupyter Notebooks and vice versa.
Convert "myfile.jl" Pluto Notebook to "myfile.ipynb" Jupyter notebook
jl2nb("myfile.jl")
Convert "myfile.ipynb" Jupyter Notebook to "myfile.jl" Pluto notebook
nb2jl("myfile.ipynb")
- Cell Structures are kept intact
- Markdown are wrapped around md"""triple quotes"""
- Multiple Expressions wrapped around begin-end block
- Skips Cells begining with
;
or?
- No Python Dependency
- Pluto doesnot allow multiple definition for same variable name in different blocks but jupyter notebook does.