Converts Mathematica notebooks (.nb) to Visual Studio Code (VSCode) Notebook format (.vsnb or .wlnb).
This repository has been deprecated and is no longer maintained.
I have replaced this function with a more general solution: Mathematica2Jupyter which converts Mathematica Notebooks (.nb) into either:
- Jupyter Notebooks (
.ipynb) - VSCode Notebooks (
.vsnb/.wlnb)
The new unified function provides the same VSCode conversion functionality plus Jupyter support with a cleaner, more maintainable codebase.
Replace calls to Mathematica2VSCode[file] with:
Mathematica2Jupyter[file, "vsnb"]for VSCode notebooksMathematica2Jupyter[file, "ipynb"]for Jupyter notebooks (default)
Please update your workflows to use the new repository.