├── .binder └── requirements.txt ├── .flake8 ├── .github └── workflows │ ├── pdf.yml │ ├── pyppeteer_reqs.txt │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASES.md ├── codecov.yml ├── conftest.py ├── docs ├── _config.yml ├── _toc.yml ├── advanced │ ├── advanced.md │ ├── pdf.md │ └── sphinx.md ├── content │ ├── citations.md │ ├── code-outputs.md │ ├── content-blocks.md │ ├── execute.md │ ├── figures.md │ ├── layout.md │ ├── math.md │ └── myst.md ├── contribute │ └── intro.md ├── customize │ ├── config.md │ └── toc.md ├── file-types │ ├── include-rst.rst │ ├── index.md │ ├── jupytext.Rmd │ ├── markdown.md │ ├── myst-notebooks.md │ ├── notebooks.ipynb │ └── restructuredtext.md ├── images │ ├── C-3PO_droid.png │ ├── cool.jpg │ ├── favicon.ico │ ├── fun-fish.png │ ├── logo.png │ ├── metadata_edit.gif │ ├── metadata_edit.png │ ├── monty_hall_goat.png │ ├── netlify-build.png │ ├── netlify-cd.png │ ├── netlify-domain.png │ ├── tags_jupyterlab.png │ └── tags_notebook.png ├── interactive │ ├── comments.md │ ├── comments │ │ ├── hypothesis.md │ │ └── utterances.md │ ├── hiding.md │ ├── interactive.ipynb │ └── launchbuttons.ipynb ├── intro.md ├── publish │ ├── gh-pages.md │ └── netlify.md ├── reference │ ├── _changelog.md │ ├── cheatsheet.md │ ├── cli.md │ └── glossary.md ├── references.bib ├── requirements.txt ├── runtime.txt └── start │ ├── build.md │ ├── overview.md │ └── publish.md ├── examples └── single_page.ipynb ├── jupyter_book ├── __init__.py ├── book_template │ ├── _config.yml │ ├── _toc.yml │ ├── content.md │ ├── intro.md │ ├── logo.png │ ├── markdown.md │ ├── notebooks.ipynb │ ├── references.bib │ └── requirements.txt ├── commands │ └── __init__.py ├── config.py ├── config_schema.json ├── default_config.yml ├── directive │ ├── __init__.py │ └── toc.py ├── pdf.py ├── sphinx.py ├── toc.py └── utils.py ├── scripts ├── clear_doc_outputs.py ├── install_latex.sh └── texlive.profile ├── setup.py ├── tests ├── books │ ├── clean_cache │ │ ├── _config.yml │ │ ├── _toc.yml │ │ └── index.md │ ├── config │ │ ├── _config.yml │ │ ├── _config_timeout.yml │ │ ├── _static │ │ │ ├── js │ │ │ │ └── myjs.js │ │ │ └── mycss.css │ │ ├── _toc.yml │ │ └── index.md │ ├── nested │ │ ├── _config.yml │ │ ├── _toc.yml │ │ ├── contents │ │ │ └── markdown.md │ │ └── intro.md │ ├── notoc │ │ ├── content2.md │ │ └── index.md │ ├── sphinx_syntaxerr │ │ ├── _toc.yml │ │ └── index.md │ └── toc │ │ ├── _toc.yml │ │ ├── _toc_chapters.yml │ │ ├── _toc_emptysections.yml │ │ ├── _toc_mixedpartsfiles.yml │ │ ├── _toc_nofileorurl.yml │ │ ├── _toc_numbered.yml │ │ ├── _toc_numbered_parts.yml │ │ ├── _toc_numbered_parts_subset.yml │ │ ├── _toc_parts.yml │ │ ├── _toc_simple.yml │ │ ├── _toc_startwithlist.yml │ │ ├── _toc_url.yml │ │ ├── _toc_urllink.yml │ │ ├── _toc_urlwithouttitle.yml │ │ ├── _toc_wrongkey.yml │ │ ├── anemptyfolder │ │ └── notacontentfile.txt │ │ ├── content1.ipynb │ │ ├── content2.md │ │ ├── content3.rst │ │ ├── index.md │ │ └── subfolder │ │ ├── asubpage.md │ │ └── index.md ├── conftest.py ├── pages │ ├── extra_page.ipynb │ ├── loop_unrun.ipynb │ ├── nb_test_page_execute.ipynb │ └── single_page.ipynb ├── test_build.py ├── test_clean.py ├── test_config.py ├── test_config │ ├── test_config_sphinx_command.txt │ ├── test_get_final_config_empty_.yml │ ├── test_get_final_config_exclude_patterns_.yml │ ├── test_get_final_config_execute_method_.yml │ ├── test_get_final_config_extended_syntax_.yml │ ├── test_get_final_config_html_extra_footer_.yml │ ├── test_get_final_config_latex_doc_.yml │ ├── test_get_final_config_launch_buttons_.yml │ ├── test_get_final_config_repository_.yml │ ├── test_get_final_config_sphinx_.yml │ └── test_get_final_config_title_.yml ├── test_pdf.py ├── test_toc.py ├── test_toc │ ├── _toc_numbered.html │ ├── _toc_numbered_parts.html │ └── _toc_numbered_parts_subset.html ├── test_tocdirective.py ├── test_tocdirective │ ├── test_toc_chapters.html │ ├── test_toc_parts_directive.html │ ├── test_toc_parts_sidebar.html │ ├── test_toc_startwithlist.html │ └── test_toc_urllink.html └── test_utils.py └── tox.ini /.binder/requirements.txt: -------------------------------------------------------------------------------- 1 | -r ../docs/requirements.txt 2 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | ignore=E203,W503 4 | -------------------------------------------------------------------------------- /.github/workflows/pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/.github/workflows/pdf.yml -------------------------------------------------------------------------------- /.github/workflows/pyppeteer_reqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/.github/workflows/pyppeteer_reqs.txt -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/RELEASES.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/codecov.yml -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/advanced/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/advanced/advanced.md -------------------------------------------------------------------------------- /docs/advanced/pdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/advanced/pdf.md -------------------------------------------------------------------------------- /docs/advanced/sphinx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/advanced/sphinx.md -------------------------------------------------------------------------------- /docs/content/citations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/content/citations.md -------------------------------------------------------------------------------- /docs/content/code-outputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/content/code-outputs.md -------------------------------------------------------------------------------- /docs/content/content-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/content/content-blocks.md -------------------------------------------------------------------------------- /docs/content/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/content/execute.md -------------------------------------------------------------------------------- /docs/content/figures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/content/figures.md -------------------------------------------------------------------------------- /docs/content/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/content/layout.md -------------------------------------------------------------------------------- /docs/content/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/content/math.md -------------------------------------------------------------------------------- /docs/content/myst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/content/myst.md -------------------------------------------------------------------------------- /docs/contribute/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/contribute/intro.md -------------------------------------------------------------------------------- /docs/customize/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/customize/config.md -------------------------------------------------------------------------------- /docs/customize/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/customize/toc.md -------------------------------------------------------------------------------- /docs/file-types/include-rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/file-types/include-rst.rst -------------------------------------------------------------------------------- /docs/file-types/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/file-types/index.md -------------------------------------------------------------------------------- /docs/file-types/jupytext.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/file-types/jupytext.Rmd -------------------------------------------------------------------------------- /docs/file-types/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/file-types/markdown.md -------------------------------------------------------------------------------- /docs/file-types/myst-notebooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/file-types/myst-notebooks.md -------------------------------------------------------------------------------- /docs/file-types/notebooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/file-types/notebooks.ipynb -------------------------------------------------------------------------------- /docs/file-types/restructuredtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/file-types/restructuredtext.md -------------------------------------------------------------------------------- /docs/images/C-3PO_droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/C-3PO_droid.png -------------------------------------------------------------------------------- /docs/images/cool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/cool.jpg -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/fun-fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/fun-fish.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/metadata_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/metadata_edit.gif -------------------------------------------------------------------------------- /docs/images/metadata_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/metadata_edit.png -------------------------------------------------------------------------------- /docs/images/monty_hall_goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/monty_hall_goat.png -------------------------------------------------------------------------------- /docs/images/netlify-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/netlify-build.png -------------------------------------------------------------------------------- /docs/images/netlify-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/netlify-cd.png -------------------------------------------------------------------------------- /docs/images/netlify-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/netlify-domain.png -------------------------------------------------------------------------------- /docs/images/tags_jupyterlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/tags_jupyterlab.png -------------------------------------------------------------------------------- /docs/images/tags_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/images/tags_notebook.png -------------------------------------------------------------------------------- /docs/interactive/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/interactive/comments.md -------------------------------------------------------------------------------- /docs/interactive/comments/hypothesis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/interactive/comments/hypothesis.md -------------------------------------------------------------------------------- /docs/interactive/comments/utterances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/interactive/comments/utterances.md -------------------------------------------------------------------------------- /docs/interactive/hiding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/interactive/hiding.md -------------------------------------------------------------------------------- /docs/interactive/interactive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/interactive/interactive.ipynb -------------------------------------------------------------------------------- /docs/interactive/launchbuttons.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/interactive/launchbuttons.ipynb -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/publish/gh-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/publish/gh-pages.md -------------------------------------------------------------------------------- /docs/publish/netlify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/publish/netlify.md -------------------------------------------------------------------------------- /docs/reference/_changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/reference/_changelog.md -------------------------------------------------------------------------------- /docs/reference/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/reference/cheatsheet.md -------------------------------------------------------------------------------- /docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/reference/cli.md -------------------------------------------------------------------------------- /docs/reference/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/reference/glossary.md -------------------------------------------------------------------------------- /docs/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/references.bib -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/runtime.txt: -------------------------------------------------------------------------------- 1 | 3.7 2 | -------------------------------------------------------------------------------- /docs/start/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/start/build.md -------------------------------------------------------------------------------- /docs/start/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/start/overview.md -------------------------------------------------------------------------------- /docs/start/publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/docs/start/publish.md -------------------------------------------------------------------------------- /examples/single_page.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/examples/single_page.ipynb -------------------------------------------------------------------------------- /jupyter_book/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/__init__.py -------------------------------------------------------------------------------- /jupyter_book/book_template/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/book_template/_config.yml -------------------------------------------------------------------------------- /jupyter_book/book_template/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/book_template/_toc.yml -------------------------------------------------------------------------------- /jupyter_book/book_template/content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/book_template/content.md -------------------------------------------------------------------------------- /jupyter_book/book_template/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/book_template/intro.md -------------------------------------------------------------------------------- /jupyter_book/book_template/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/book_template/logo.png -------------------------------------------------------------------------------- /jupyter_book/book_template/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/book_template/markdown.md -------------------------------------------------------------------------------- /jupyter_book/book_template/notebooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/book_template/notebooks.ipynb -------------------------------------------------------------------------------- /jupyter_book/book_template/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/book_template/references.bib -------------------------------------------------------------------------------- /jupyter_book/book_template/requirements.txt: -------------------------------------------------------------------------------- 1 | jupyter-book 2 | matplotlib 3 | numpy 4 | -------------------------------------------------------------------------------- /jupyter_book/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/commands/__init__.py -------------------------------------------------------------------------------- /jupyter_book/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/config.py -------------------------------------------------------------------------------- /jupyter_book/config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/config_schema.json -------------------------------------------------------------------------------- /jupyter_book/default_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/default_config.yml -------------------------------------------------------------------------------- /jupyter_book/directive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jupyter_book/directive/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/directive/toc.py -------------------------------------------------------------------------------- /jupyter_book/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/pdf.py -------------------------------------------------------------------------------- /jupyter_book/sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/sphinx.py -------------------------------------------------------------------------------- /jupyter_book/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/toc.py -------------------------------------------------------------------------------- /jupyter_book/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/jupyter_book/utils.py -------------------------------------------------------------------------------- /scripts/clear_doc_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/scripts/clear_doc_outputs.py -------------------------------------------------------------------------------- /scripts/install_latex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/scripts/install_latex.sh -------------------------------------------------------------------------------- /scripts/texlive.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/scripts/texlive.profile -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/setup.py -------------------------------------------------------------------------------- /tests/books/clean_cache/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/clean_cache/_config.yml -------------------------------------------------------------------------------- /tests/books/clean_cache/_toc.yml: -------------------------------------------------------------------------------- 1 | file: index 2 | -------------------------------------------------------------------------------- /tests/books/clean_cache/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/clean_cache/index.md -------------------------------------------------------------------------------- /tests/books/config/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/config/_config.yml -------------------------------------------------------------------------------- /tests/books/config/_config_timeout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/config/_config_timeout.yml -------------------------------------------------------------------------------- /tests/books/config/_static/js/myjs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/books/config/_static/mycss.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/books/config/_toc.yml: -------------------------------------------------------------------------------- 1 | file: index 2 | -------------------------------------------------------------------------------- /tests/books/config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/config/index.md -------------------------------------------------------------------------------- /tests/books/nested/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/nested/_config.yml -------------------------------------------------------------------------------- /tests/books/nested/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/nested/_toc.yml -------------------------------------------------------------------------------- /tests/books/nested/contents/markdown.md: -------------------------------------------------------------------------------- 1 | # Content 2 | -------------------------------------------------------------------------------- /tests/books/nested/intro.md: -------------------------------------------------------------------------------- 1 | # Intro 2 | -------------------------------------------------------------------------------- /tests/books/notoc/content2.md: -------------------------------------------------------------------------------- 1 | # Content 2 2 | -------------------------------------------------------------------------------- /tests/books/notoc/index.md: -------------------------------------------------------------------------------- 1 | # Main index 2 | -------------------------------------------------------------------------------- /tests/books/sphinx_syntaxerr/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/sphinx_syntaxerr/_toc.yml -------------------------------------------------------------------------------- /tests/books/sphinx_syntaxerr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/sphinx_syntaxerr/index.md -------------------------------------------------------------------------------- /tests/books/toc/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_chapters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_chapters.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_emptysections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_emptysections.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_mixedpartsfiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_mixedpartsfiles.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_nofileorurl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_nofileorurl.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_numbered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_numbered.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_numbered_parts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_numbered_parts.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_numbered_parts_subset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_numbered_parts_subset.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_parts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_parts.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_simple.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_startwithlist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_startwithlist.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_url.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_urllink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_urllink.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_urlwithouttitle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_urlwithouttitle.yml -------------------------------------------------------------------------------- /tests/books/toc/_toc_wrongkey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/_toc_wrongkey.yml -------------------------------------------------------------------------------- /tests/books/toc/anemptyfolder/notacontentfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/books/toc/content1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/content1.ipynb -------------------------------------------------------------------------------- /tests/books/toc/content2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/content2.md -------------------------------------------------------------------------------- /tests/books/toc/content3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/books/toc/content3.rst -------------------------------------------------------------------------------- /tests/books/toc/index.md: -------------------------------------------------------------------------------- 1 | # Main index 2 | 3 | 4 | ```{tableofcontents} 5 | ``` 6 | -------------------------------------------------------------------------------- /tests/books/toc/subfolder/asubpage.md: -------------------------------------------------------------------------------- 1 | # A subpage 2 | -------------------------------------------------------------------------------- /tests/books/toc/subfolder/index.md: -------------------------------------------------------------------------------- 1 | # Subfolder index 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pages/extra_page.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/pages/extra_page.ipynb -------------------------------------------------------------------------------- /tests/pages/loop_unrun.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/pages/loop_unrun.ipynb -------------------------------------------------------------------------------- /tests/pages/nb_test_page_execute.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/pages/nb_test_page_execute.ipynb -------------------------------------------------------------------------------- /tests/pages/single_page.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/pages/single_page.ipynb -------------------------------------------------------------------------------- /tests/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_build.py -------------------------------------------------------------------------------- /tests/test_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_clean.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_config/test_config_sphinx_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_config_sphinx_command.txt -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_empty_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_empty_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_exclude_patterns_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_exclude_patterns_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_execute_method_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_execute_method_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_extended_syntax_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_extended_syntax_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_html_extra_footer_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_html_extra_footer_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_latex_doc_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_latex_doc_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_launch_buttons_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_launch_buttons_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_repository_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_repository_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_sphinx_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_sphinx_.yml -------------------------------------------------------------------------------- /tests/test_config/test_get_final_config_title_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_config/test_get_final_config_title_.yml -------------------------------------------------------------------------------- /tests/test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_pdf.py -------------------------------------------------------------------------------- /tests/test_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_toc.py -------------------------------------------------------------------------------- /tests/test_toc/_toc_numbered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_toc/_toc_numbered.html -------------------------------------------------------------------------------- /tests/test_toc/_toc_numbered_parts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_toc/_toc_numbered_parts.html -------------------------------------------------------------------------------- /tests/test_toc/_toc_numbered_parts_subset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_toc/_toc_numbered_parts_subset.html -------------------------------------------------------------------------------- /tests/test_tocdirective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_tocdirective.py -------------------------------------------------------------------------------- /tests/test_tocdirective/test_toc_chapters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_tocdirective/test_toc_chapters.html -------------------------------------------------------------------------------- /tests/test_tocdirective/test_toc_parts_directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_tocdirective/test_toc_parts_directive.html -------------------------------------------------------------------------------- /tests/test_tocdirective/test_toc_parts_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_tocdirective/test_toc_parts_sidebar.html -------------------------------------------------------------------------------- /tests/test_tocdirective/test_toc_startwithlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_tocdirective/test_toc_startwithlist.html -------------------------------------------------------------------------------- /tests/test_tocdirective/test_toc_urllink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_tocdirective/test_toc_urllink.html -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choldgraf/jupyter-book/HEAD/tox.ini --------------------------------------------------------------------------------