prophet/docs/Makefile

10 lines
324 B
Makefile
Raw Normal View History

2017-02-22 23:59:43 +00:00
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/; \
2017-02-22 23:59:43 +00:00
rm -rf static/"$$NAME"_files; \
mv ../notebooks/"$$NAME"_files static/; \
2017-02-22 23:59:43 +00:00
done