Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
96129 views
1
#! /bin/bash
2
3
echo "merging book..."
4
5
6
echo "creating html..."
7
ipython nbconvert --to=html table_of_contents.ipynb
8
ipython nbconvert --to=html Preface.ipynb
9
ipython nbconvert --to=html 01_gh_filter/g-h_filter.ipynb
10
11
12
echo "done."
13
14
15