-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnb-convert.sh
More file actions
11 lines (9 loc) · 824 Bytes
/
nb-convert.sh
File metadata and controls
11 lines (9 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
#
# all notebooks to be converted without input/code
jupyter nbconvert --to html ../dsp/jupyter/*.ipynb --no-input
jupyter nbconvert --to html ../Computer_Music_Basics/jupyter/*.ipynb --no-input
jupyter nbconvert --to html ../Sound_Synthesis_Introduction/jupyter/*.ipynb --no-input
# all notebooks to be converted with input/code
jupyter nbconvert --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags="{'remove_cell'}" --TagRemovePreprocessor.remove_input_tags="['remove_input','other_tags']" --to html ../dsp/jupyter_code/*.ipynb
jupyter nbconvert --TagRemovePreprocessor.enabled=True --TagRemovePreprocessor.remove_cell_tags="{'remove_cell'}" --TagRemovePreprocessor.remove_input_tags="['remove_input','other_tags']" --to html ../Sound_Synthesis_Introduction/jupyter_code/*.ipynb