Skip to content
Snippets Groups Projects
Verified Commit b4b593ef authored by Alexander Dunkel's avatar Alexander Dunkel
Browse files

Update HTML conversion hooks

parent ce042d49
No related branches found
No related tags found
No related merge requests found
......@@ -1222,10 +1222,9 @@ Steps:
</div>
```python
!jupyter nbconvert --to html_toc \
--output-dir=../resources/html/ ./01_raw_intro.ipynb \
--template=../nbconvert.tpl \
--ExtractOutputPreprocessor.enabled=False >&- 2>&- # create single output file
!jupyter nbconvert --to html \
--output-dir=./out/ ./01_raw_intro.ipynb \
--ExtractOutputPreprocessor.enabled=False >&- 2>&- # create single output file
```
## Summary
......
......@@ -1261,10 +1261,9 @@ fig.savefig(
**Save the Notebook**, then execute the following cell to convert to HTML (archive format).
```python
!jupyter nbconvert --to html_toc \
--output-dir=../resources/html/ ./02_hll_intro.ipynb \
--template=../nbconvert.tpl \
--ExtractOutputPreprocessor.enabled=False >&- 2>&-
!jupyter nbconvert --to html \
--output-dir=./out/ ./02_hll_intro.ipynb \
--ExtractOutputPreprocessor.enabled=False >&- 2>&- # create single output file
```
## Summary
......
......@@ -1176,10 +1176,9 @@ write_shapefile(
## Create Notebook HTML
```python
!jupyter nbconvert --to html_toc \
--output-dir=../resources/html/ ./03_tagmaps.ipynb \
--template=../nbconvert.tpl \
--ExtractOutputPreprocessor.enabled=False >&- 2>&-
!jupyter nbconvert --to html \
--output-dir=./out/ ./03_tagmaps.ipynb \
--ExtractOutputPreprocessor.enabled=False >&- 2>&- # create single output file
```
## Create ZIP with all results
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment