notedown.sh 212 字节
Newer Older
L
liaogang 已提交
1
#!/bin/bash
L
liaogang 已提交
2
set -xe
L
liaogang 已提交
3 4 5 6 7 8 9 10 11 12

pip install notedown

cur_path="$(cd "$(dirname "$0")" && pwd -P)"
cd $cur_path/../

#convert md to ipynb
for file in */{README,README\.en}.md ; do
    notedown $file > ${file%.*}.ipynb
done