mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-14 20:48:08 +00:00
9 lines
324 B
Makefile
9 lines
324 B
Makefile
notebooks:
|
|
for f in ../notebooks/*.ipynb; \
|
|
do \
|
|
NAME=$$(basename $$f .ipynb); \
|
|
jupyter nbconvert --to markdown ../notebooks/$$NAME.ipynb --template=nbconvert_template.tpl; \
|
|
mv -f ../notebooks/"$$NAME".md _docs/; \
|
|
rm -rf static/"$$NAME"_files; \
|
|
mv ../notebooks/"$$NAME"_files static/; \
|
|
done
|