Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

Markdown_Tipps-and-Tricks.md

Blame
  • convert-to-ipynb.sh 76 B
    #!/bin/sh
    
    for fn in 0*dim.py; do
        jupytext --to ipynb --update $fn
    done