# Install jupytext using: conda install jupytext -c conda-forge1# Always pair ipynb notebooks to md files.2# formats = "ipynb,md"3formats = "ipynb,myst"45# jupytext --to ipynb *.md # convert all .md files to notebooks with no outputs6# jupytext --to ipynb --execute *.md # convert all .md files to notebooks and execute them7# jupytext --set-formats ipynb,md --execute *.md # convert all .md files to paired notebooks and execute them8# jupytext --to md *.ipynb # convert all .ipynb files to .md files9# jupytext --to myst *.ipynb # convert all .ipynb files to myst files1011# convert notebooks to rst https://nbconvert.readthedocs.io/en/latest/usage.html#convert-rst12# jupyter nbconvert *.ipynb --to rst13# convert md to rst: m2r *.md141516