Skip to content

Commit

Permalink
Fix in callbacks and tutorials.
Browse files Browse the repository at this point in the history
  • Loading branch information
fsaad committed May 5, 2023
1 parent a5e0a53 commit 19fe14b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/src/tutorials/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
2 changes: 1 addition & 1 deletion docs/src/tutorials/README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
All tutorials should be written or edited as .ipynb files.

The script in ./build.sh will convert these to .jl and .md files.
The script in ./build.sh will convert these notebooks to [.jl, .md, .html].

If .md files should contain output, make that the .ipynb notebooks have
been executed, either through the browser or command-line `jupyter`.
1 change: 1 addition & 0 deletions docs/src/tutorials/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

for x in $(ls *.ipynb); do
python -m jupyter nbconvert --to markdown $x
python -m nbconvert --to html $x
python -m jupytext --to jl $x
done

Expand Down

0 comments on commit 19fe14b

Please sign in to comment.