Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 675 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 675 Bytes

Pluto2Jupyter.jl

Pluto2Jupyter converts Pluto Notebooks to Jupyter Notebooks and vice versa.

Usage

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")

Key Features

  • 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

Potential Issues

  • Pluto doesnot allow multiple definition for same variable name in different blocks but jupyter notebook does.