-
Notifications
You must be signed in to change notification settings - Fork 5
/
build_docs.sh
executable file
·29 lines (16 loc) · 1.06 KB
/
build_docs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
jupyter nbconvert --to markdown --output=readme examples/from_text_to_object/from_text_to_object.ipynb
jupyter nbconvert --to markdown --output=readme examples/quick_meeting/quick_meeting.ipynb
jupyter nbconvert --to markdown --output=readme examples/tough_meeting/tough_meeting.ipynb
jupyter nbconvert --to markdown --output=readme examples/extract/extract.ipynb
jupyter nbconvert --to markdown --output=readme_dataclass examples/extract/extract_dataclass.ipynb
jupyter nbconvert --to markdown --output=readme examples/tag/tag.ipynb
jupyter nbconvert --to markdown --output=readme examples/compare/compare.ipynb
jupyter nbconvert --to markdown --output=readme examples/interact/interact.ipynb
jupyter nbconvert --to markdown --output=readme examples/cli/cli.ipynb
jupyter nbconvert --to markdown --output=readme examples/async/async.ipynb
jupyter nbconvert --to markdown --output=readme examples/receipt/receipt.ipynb
jupyter nbconvert --to markdown --output=readme examples/simple_tools/simple_tools.ipynb
if [[ "$1" -ne "nb" ]]; then
mkdocs build
fi