├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── dependabot.yml └── workflows │ ├── docs.yml │ ├── enforce-label.yml │ ├── prep-release.yml │ ├── publish-release.yml │ └── tests.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .prettierignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── SECURITY.md ├── check_requirements.py ├── docs ├── Makefile ├── README.md ├── api_examples │ └── template_path │ │ ├── make_html.py │ │ ├── media │ │ ├── image1.png │ │ └── image2.png │ │ ├── project_templates │ │ └── nbconvert │ │ │ └── templates │ │ │ └── classic_clone │ │ │ ├── conf.json │ │ │ ├── index.html.j2 │ │ │ └── static │ │ │ └── style.css │ │ └── quiz_notebook.py ├── autogen_config.py ├── make.bat └── source │ ├── _static │ ├── empty.txt │ ├── exporter_inheritance.png │ ├── preprocessor_inheritance.png │ └── writer_inheritance.png │ ├── api │ ├── exporters.rst │ ├── filters.rst │ ├── index.rst │ ├── nbconvertapp.rst │ ├── postprocessors.rst │ ├── preprocessors.rst │ └── writers.rst │ ├── architecture.rst │ ├── conf.py │ ├── customizing.rst │ ├── dejavu.rst │ ├── development_release.rst │ ├── execute_api.rst │ ├── external_exporters.rst │ ├── highlighting.rst │ ├── index.rst │ ├── install.rst │ ├── latex_citations.rst │ ├── nbconvert_library.ipynb │ ├── need_help.rst │ ├── removing_cells.rst │ └── usage.rst ├── hatch_build.py ├── nbconvert ├── __init__.py ├── __main__.py ├── _version.py ├── conftest.py ├── exporters │ ├── __init__.py │ ├── asciidoc.py │ ├── base.py │ ├── exporter.py │ ├── html.py │ ├── latex.py │ ├── markdown.py │ ├── notebook.py │ ├── pdf.py │ ├── python.py │ ├── qt_exporter.py │ ├── qt_screenshot.py │ ├── qtpdf.py │ ├── qtpng.py │ ├── rst.py │ ├── script.py │ ├── slides.py │ ├── templateexporter.py │ └── webpdf.py ├── filters │ ├── __init__.py │ ├── ansi.py │ ├── citation.py │ ├── datatypefilter.py │ ├── filter_links.py │ ├── highlight.py │ ├── latex.py │ ├── markdown.py │ ├── markdown_mistune.py │ ├── metadata.py │ ├── pandoc.py │ ├── strings.py │ └── widgetsdatatypefilter.py ├── nbconvertapp.py ├── postprocessors │ ├── __init__.py │ ├── base.py │ └── serve.py ├── preprocessors │ ├── __init__.py │ ├── base.py │ ├── clearmetadata.py │ ├── clearoutput.py │ ├── coalescestreams.py │ ├── convertfigures.py │ ├── csshtmlheader.py │ ├── execute.py │ ├── extractattachments.py │ ├── extractoutput.py │ ├── highlightmagics.py │ ├── latex.py │ ├── regexremove.py │ ├── sanitize.py │ ├── svg2pdf.py │ └── tagremove.py ├── py.typed ├── resources │ └── __init__.py ├── templates │ ├── README.md │ └── skeleton │ │ ├── Makefile │ │ └── README.md ├── utils │ ├── __init__.py │ ├── _contextlib_chdir.py │ ├── base.py │ ├── exceptions.py │ ├── io.py │ ├── iso639_1.py │ ├── lexers.py │ ├── pandoc.py │ ├── text.py │ └── version.py └── writers │ ├── __init__.py │ ├── base.py │ ├── debug.py │ ├── files.py │ └── stdout.py ├── pyproject.toml ├── share └── templates │ ├── asciidoc │ ├── conf.json │ └── index.asciidoc.j2 │ ├── base │ ├── cell_id_anchor.j2 │ ├── celltags.j2 │ ├── display_priority.j2 │ ├── jupyter_widgets.html.j2 │ ├── mathjax.html.j2 │ └── null.j2 │ ├── basic │ ├── conf.json │ └── index.html.j2 │ ├── classic │ ├── base.html.j2 │ ├── conf.json │ └── index.html.j2 │ ├── compatibility │ ├── display_priority.tpl │ └── full.tpl │ ├── lab │ ├── base.html.j2 │ ├── conf.json │ ├── index.html.j2 │ └── mermaidjs.html.j2 │ ├── latex │ ├── base.tex.j2 │ ├── conf.json │ ├── display_priority.j2 │ ├── document_contents.tex.j2 │ ├── index.tex.j2 │ ├── null.j2 │ ├── report.tex.j2 │ ├── style_bw_ipython.tex.j2 │ ├── style_bw_python.tex.j2 │ ├── style_ipython.tex.j2 │ ├── style_jupyter.tex.j2 │ └── style_python.tex.j2 │ ├── markdown │ ├── conf.json │ └── index.md.j2 │ ├── python │ ├── conf.json │ └── index.py.j2 │ ├── reveal │ ├── base.html.j2 │ ├── cellslidedata.j2 │ ├── conf.json │ ├── index.html.j2 │ └── static │ │ └── custom_reveal.css │ ├── rst │ ├── conf.json │ └── index.rst.j2 │ ├── script │ ├── conf.json │ └── script.j2 │ └── webpdf │ ├── conf.json │ └── index.pdf.j2 └── tests ├── README.md ├── __init__.py ├── base.py ├── exporter_entrypoint ├── eptest-0.1.dist-info │ └── entry_points.txt └── eptest.py ├── exporters ├── __init__.py ├── base.py ├── cheese.py ├── files │ ├── attachment.ipynb │ ├── esmodule.html.j2 │ ├── esmodule.js │ ├── lablike.html.j2 │ ├── notebook2.ipynb │ ├── notebook3.ipynb │ ├── notebook_inject.ipynb │ ├── pngmetadata.ipynb │ ├── prompt_numbers.ipynb │ ├── rawtest.ipynb │ ├── rst_output.ipynb │ └── svg.ipynb ├── test_asciidoc.py ├── test_export.py ├── test_exporter.py ├── test_html.py ├── test_latex.py ├── test_markdown.py ├── test_notebook.py ├── test_pdf.py ├── test_python.py ├── test_qtpdf.py ├── test_qtpng.py ├── test_rst.py ├── test_script.py ├── test_slides.py ├── test_templateexporter.py └── test_webpdf.py ├── fake_exporters.py ├── files ├── Unexecuted_widget.ipynb ├── Unexecuted_widget_2.ipynb ├── Widget_List.ipynb ├── containerized_deployments.jpeg ├── hello.py ├── jupyter_nbconvert_config.py ├── latex-linked-image.ipynb ├── markdown_display_priority.ipynb ├── notebook1.ipynb ├── notebook2.ipynb ├── notebook3_with_errors.ipynb ├── notebook4_jpeg.ipynb ├── notebook5_embed_images.ipynb ├── notebook_jl.ipynb ├── notebook_tags.ipynb ├── override.py └── testimage.png ├── filters ├── __init__.py ├── test_ansi.py ├── test_citation.py ├── test_datatypefilter.py ├── test_highlight.py ├── test_latex.py ├── test_markdown.py ├── test_metadata.py ├── test_pandoc.py └── test_strings.py ├── postprocessors ├── __init__.py └── test_serve.py ├── preprocessors ├── __init__.py ├── base.py ├── fake_kernelmanager.py ├── files │ ├── HelloWorld.ipynb │ └── MixedMarkdown.ipynb ├── test_clearmetadata.py ├── test_clearoutput.py ├── test_coalescestreams.py ├── test_csshtmlheader.py ├── test_execute.py ├── test_extractattachments.py ├── test_extractoutput.py ├── test_highlightmagics.py ├── test_latex.py ├── test_regexremove.py ├── test_sanitize.py ├── test_svg2pdf.py └── test_tagremove.py ├── test_nbconvertapp.py ├── testutils.py ├── utils ├── __init__.py ├── test_io.py ├── test_pandoc.py └── test_version.py └── writers ├── __init__.py ├── test_debug.py ├── test_files.py └── test_stdout.py /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Initial pre-commit reformat 2 | 68b496b7fcf4cfbffe9e1656ac52400a24cacc45 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | tests/files/*.html 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/SECURITY.md -------------------------------------------------------------------------------- /check_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/check_requirements.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api_examples/template_path/make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/api_examples/template_path/make_html.py -------------------------------------------------------------------------------- /docs/api_examples/template_path/media/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/api_examples/template_path/media/image1.png -------------------------------------------------------------------------------- /docs/api_examples/template_path/media/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/api_examples/template_path/media/image2.png -------------------------------------------------------------------------------- /docs/api_examples/template_path/project_templates/nbconvert/templates/classic_clone/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/api_examples/template_path/project_templates/nbconvert/templates/classic_clone/conf.json -------------------------------------------------------------------------------- /docs/api_examples/template_path/project_templates/nbconvert/templates/classic_clone/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/api_examples/template_path/project_templates/nbconvert/templates/classic_clone/index.html.j2 -------------------------------------------------------------------------------- /docs/api_examples/template_path/project_templates/nbconvert/templates/classic_clone/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/api_examples/template_path/project_templates/nbconvert/templates/classic_clone/static/style.css -------------------------------------------------------------------------------- /docs/api_examples/template_path/quiz_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/api_examples/template_path/quiz_notebook.py -------------------------------------------------------------------------------- /docs/autogen_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/autogen_config.py -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/exporter_inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/_static/exporter_inheritance.png -------------------------------------------------------------------------------- /docs/source/_static/preprocessor_inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/_static/preprocessor_inheritance.png -------------------------------------------------------------------------------- /docs/source/_static/writer_inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/_static/writer_inheritance.png -------------------------------------------------------------------------------- /docs/source/api/exporters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/api/exporters.rst -------------------------------------------------------------------------------- /docs/source/api/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/api/filters.rst -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/nbconvertapp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/api/nbconvertapp.rst -------------------------------------------------------------------------------- /docs/source/api/postprocessors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/api/postprocessors.rst -------------------------------------------------------------------------------- /docs/source/api/preprocessors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/api/preprocessors.rst -------------------------------------------------------------------------------- /docs/source/api/writers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/api/writers.rst -------------------------------------------------------------------------------- /docs/source/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/architecture.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/customizing.rst -------------------------------------------------------------------------------- /docs/source/dejavu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/dejavu.rst -------------------------------------------------------------------------------- /docs/source/development_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/development_release.rst -------------------------------------------------------------------------------- /docs/source/execute_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/execute_api.rst -------------------------------------------------------------------------------- /docs/source/external_exporters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/external_exporters.rst -------------------------------------------------------------------------------- /docs/source/highlighting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/highlighting.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/latex_citations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/latex_citations.rst -------------------------------------------------------------------------------- /docs/source/nbconvert_library.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/nbconvert_library.ipynb -------------------------------------------------------------------------------- /docs/source/need_help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/need_help.rst -------------------------------------------------------------------------------- /docs/source/removing_cells.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/removing_cells.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /hatch_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/hatch_build.py -------------------------------------------------------------------------------- /nbconvert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/__init__.py -------------------------------------------------------------------------------- /nbconvert/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/__main__.py -------------------------------------------------------------------------------- /nbconvert/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/_version.py -------------------------------------------------------------------------------- /nbconvert/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/conftest.py -------------------------------------------------------------------------------- /nbconvert/exporters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/__init__.py -------------------------------------------------------------------------------- /nbconvert/exporters/asciidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/asciidoc.py -------------------------------------------------------------------------------- /nbconvert/exporters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/base.py -------------------------------------------------------------------------------- /nbconvert/exporters/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/exporter.py -------------------------------------------------------------------------------- /nbconvert/exporters/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/html.py -------------------------------------------------------------------------------- /nbconvert/exporters/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/latex.py -------------------------------------------------------------------------------- /nbconvert/exporters/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/markdown.py -------------------------------------------------------------------------------- /nbconvert/exporters/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/notebook.py -------------------------------------------------------------------------------- /nbconvert/exporters/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/pdf.py -------------------------------------------------------------------------------- /nbconvert/exporters/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/python.py -------------------------------------------------------------------------------- /nbconvert/exporters/qt_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/qt_exporter.py -------------------------------------------------------------------------------- /nbconvert/exporters/qt_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/qt_screenshot.py -------------------------------------------------------------------------------- /nbconvert/exporters/qtpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/qtpdf.py -------------------------------------------------------------------------------- /nbconvert/exporters/qtpng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/qtpng.py -------------------------------------------------------------------------------- /nbconvert/exporters/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/rst.py -------------------------------------------------------------------------------- /nbconvert/exporters/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/script.py -------------------------------------------------------------------------------- /nbconvert/exporters/slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/slides.py -------------------------------------------------------------------------------- /nbconvert/exporters/templateexporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/templateexporter.py -------------------------------------------------------------------------------- /nbconvert/exporters/webpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/exporters/webpdf.py -------------------------------------------------------------------------------- /nbconvert/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/__init__.py -------------------------------------------------------------------------------- /nbconvert/filters/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/ansi.py -------------------------------------------------------------------------------- /nbconvert/filters/citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/citation.py -------------------------------------------------------------------------------- /nbconvert/filters/datatypefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/datatypefilter.py -------------------------------------------------------------------------------- /nbconvert/filters/filter_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/filter_links.py -------------------------------------------------------------------------------- /nbconvert/filters/highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/highlight.py -------------------------------------------------------------------------------- /nbconvert/filters/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/latex.py -------------------------------------------------------------------------------- /nbconvert/filters/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/markdown.py -------------------------------------------------------------------------------- /nbconvert/filters/markdown_mistune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/markdown_mistune.py -------------------------------------------------------------------------------- /nbconvert/filters/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/metadata.py -------------------------------------------------------------------------------- /nbconvert/filters/pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/pandoc.py -------------------------------------------------------------------------------- /nbconvert/filters/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/strings.py -------------------------------------------------------------------------------- /nbconvert/filters/widgetsdatatypefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/filters/widgetsdatatypefilter.py -------------------------------------------------------------------------------- /nbconvert/nbconvertapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/nbconvertapp.py -------------------------------------------------------------------------------- /nbconvert/postprocessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/postprocessors/__init__.py -------------------------------------------------------------------------------- /nbconvert/postprocessors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/postprocessors/base.py -------------------------------------------------------------------------------- /nbconvert/postprocessors/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/postprocessors/serve.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/__init__.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/base.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/clearmetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/clearmetadata.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/clearoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/clearoutput.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/coalescestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/coalescestreams.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/convertfigures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/convertfigures.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/csshtmlheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/csshtmlheader.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/execute.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/extractattachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/extractattachments.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/extractoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/extractoutput.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/highlightmagics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/highlightmagics.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/latex.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/regexremove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/regexremove.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/sanitize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/sanitize.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/svg2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/svg2pdf.py -------------------------------------------------------------------------------- /nbconvert/preprocessors/tagremove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/preprocessors/tagremove.py -------------------------------------------------------------------------------- /nbconvert/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbconvert/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbconvert/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/templates/README.md -------------------------------------------------------------------------------- /nbconvert/templates/skeleton/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/templates/skeleton/Makefile -------------------------------------------------------------------------------- /nbconvert/templates/skeleton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/templates/skeleton/README.md -------------------------------------------------------------------------------- /nbconvert/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbconvert/utils/_contextlib_chdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/_contextlib_chdir.py -------------------------------------------------------------------------------- /nbconvert/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/base.py -------------------------------------------------------------------------------- /nbconvert/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/exceptions.py -------------------------------------------------------------------------------- /nbconvert/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/io.py -------------------------------------------------------------------------------- /nbconvert/utils/iso639_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/iso639_1.py -------------------------------------------------------------------------------- /nbconvert/utils/lexers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/lexers.py -------------------------------------------------------------------------------- /nbconvert/utils/pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/pandoc.py -------------------------------------------------------------------------------- /nbconvert/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/text.py -------------------------------------------------------------------------------- /nbconvert/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/utils/version.py -------------------------------------------------------------------------------- /nbconvert/writers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/writers/__init__.py -------------------------------------------------------------------------------- /nbconvert/writers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/writers/base.py -------------------------------------------------------------------------------- /nbconvert/writers/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/writers/debug.py -------------------------------------------------------------------------------- /nbconvert/writers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/writers/files.py -------------------------------------------------------------------------------- /nbconvert/writers/stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/nbconvert/writers/stdout.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/pyproject.toml -------------------------------------------------------------------------------- /share/templates/asciidoc/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/asciidoc/conf.json -------------------------------------------------------------------------------- /share/templates/asciidoc/index.asciidoc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/asciidoc/index.asciidoc.j2 -------------------------------------------------------------------------------- /share/templates/base/cell_id_anchor.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/base/cell_id_anchor.j2 -------------------------------------------------------------------------------- /share/templates/base/celltags.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/base/celltags.j2 -------------------------------------------------------------------------------- /share/templates/base/display_priority.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/base/display_priority.j2 -------------------------------------------------------------------------------- /share/templates/base/jupyter_widgets.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/base/jupyter_widgets.html.j2 -------------------------------------------------------------------------------- /share/templates/base/mathjax.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/base/mathjax.html.j2 -------------------------------------------------------------------------------- /share/templates/base/null.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/base/null.j2 -------------------------------------------------------------------------------- /share/templates/basic/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/basic/conf.json -------------------------------------------------------------------------------- /share/templates/basic/index.html.j2: -------------------------------------------------------------------------------- 1 | {%- extends 'classic/base.html.j2' -%} 2 | -------------------------------------------------------------------------------- /share/templates/classic/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/classic/base.html.j2 -------------------------------------------------------------------------------- /share/templates/classic/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/classic/conf.json -------------------------------------------------------------------------------- /share/templates/classic/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/classic/index.html.j2 -------------------------------------------------------------------------------- /share/templates/compatibility/display_priority.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/compatibility/display_priority.tpl -------------------------------------------------------------------------------- /share/templates/compatibility/full.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/compatibility/full.tpl -------------------------------------------------------------------------------- /share/templates/lab/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/lab/base.html.j2 -------------------------------------------------------------------------------- /share/templates/lab/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/lab/conf.json -------------------------------------------------------------------------------- /share/templates/lab/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/lab/index.html.j2 -------------------------------------------------------------------------------- /share/templates/lab/mermaidjs.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/lab/mermaidjs.html.j2 -------------------------------------------------------------------------------- /share/templates/latex/base.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/base.tex.j2 -------------------------------------------------------------------------------- /share/templates/latex/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/conf.json -------------------------------------------------------------------------------- /share/templates/latex/display_priority.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/display_priority.j2 -------------------------------------------------------------------------------- /share/templates/latex/document_contents.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/document_contents.tex.j2 -------------------------------------------------------------------------------- /share/templates/latex/index.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/index.tex.j2 -------------------------------------------------------------------------------- /share/templates/latex/null.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/null.j2 -------------------------------------------------------------------------------- /share/templates/latex/report.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/report.tex.j2 -------------------------------------------------------------------------------- /share/templates/latex/style_bw_ipython.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/style_bw_ipython.tex.j2 -------------------------------------------------------------------------------- /share/templates/latex/style_bw_python.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/style_bw_python.tex.j2 -------------------------------------------------------------------------------- /share/templates/latex/style_ipython.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/style_ipython.tex.j2 -------------------------------------------------------------------------------- /share/templates/latex/style_jupyter.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/style_jupyter.tex.j2 -------------------------------------------------------------------------------- /share/templates/latex/style_python.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/latex/style_python.tex.j2 -------------------------------------------------------------------------------- /share/templates/markdown/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/markdown/conf.json -------------------------------------------------------------------------------- /share/templates/markdown/index.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/markdown/index.md.j2 -------------------------------------------------------------------------------- /share/templates/python/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/python/conf.json -------------------------------------------------------------------------------- /share/templates/python/index.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/python/index.py.j2 -------------------------------------------------------------------------------- /share/templates/reveal/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/reveal/base.html.j2 -------------------------------------------------------------------------------- /share/templates/reveal/cellslidedata.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/reveal/cellslidedata.j2 -------------------------------------------------------------------------------- /share/templates/reveal/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/reveal/conf.json -------------------------------------------------------------------------------- /share/templates/reveal/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/reveal/index.html.j2 -------------------------------------------------------------------------------- /share/templates/reveal/static/custom_reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/reveal/static/custom_reveal.css -------------------------------------------------------------------------------- /share/templates/rst/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/rst/conf.json -------------------------------------------------------------------------------- /share/templates/rst/index.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/rst/index.rst.j2 -------------------------------------------------------------------------------- /share/templates/script/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/script/conf.json -------------------------------------------------------------------------------- /share/templates/script/script.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/script/script.j2 -------------------------------------------------------------------------------- /share/templates/webpdf/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/share/templates/webpdf/conf.json -------------------------------------------------------------------------------- /share/templates/webpdf/index.pdf.j2: -------------------------------------------------------------------------------- 1 | {%- extends 'lab/index.html.j2' -%} 2 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/exporter_entrypoint/eptest-0.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporter_entrypoint/eptest-0.1.dist-info/entry_points.txt -------------------------------------------------------------------------------- /tests/exporter_entrypoint/eptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporter_entrypoint/eptest.py -------------------------------------------------------------------------------- /tests/exporters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/exporters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/base.py -------------------------------------------------------------------------------- /tests/exporters/cheese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/cheese.py -------------------------------------------------------------------------------- /tests/exporters/files/attachment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/attachment.ipynb -------------------------------------------------------------------------------- /tests/exporters/files/esmodule.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/esmodule.html.j2 -------------------------------------------------------------------------------- /tests/exporters/files/esmodule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/esmodule.js -------------------------------------------------------------------------------- /tests/exporters/files/lablike.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/lablike.html.j2 -------------------------------------------------------------------------------- /tests/exporters/files/notebook2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/notebook2.ipynb -------------------------------------------------------------------------------- /tests/exporters/files/notebook3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/notebook3.ipynb -------------------------------------------------------------------------------- /tests/exporters/files/notebook_inject.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/notebook_inject.ipynb -------------------------------------------------------------------------------- /tests/exporters/files/pngmetadata.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/pngmetadata.ipynb -------------------------------------------------------------------------------- /tests/exporters/files/prompt_numbers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/prompt_numbers.ipynb -------------------------------------------------------------------------------- /tests/exporters/files/rawtest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/rawtest.ipynb -------------------------------------------------------------------------------- /tests/exporters/files/rst_output.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/rst_output.ipynb -------------------------------------------------------------------------------- /tests/exporters/files/svg.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/files/svg.ipynb -------------------------------------------------------------------------------- /tests/exporters/test_asciidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_asciidoc.py -------------------------------------------------------------------------------- /tests/exporters/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_export.py -------------------------------------------------------------------------------- /tests/exporters/test_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_exporter.py -------------------------------------------------------------------------------- /tests/exporters/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_html.py -------------------------------------------------------------------------------- /tests/exporters/test_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_latex.py -------------------------------------------------------------------------------- /tests/exporters/test_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_markdown.py -------------------------------------------------------------------------------- /tests/exporters/test_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_notebook.py -------------------------------------------------------------------------------- /tests/exporters/test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_pdf.py -------------------------------------------------------------------------------- /tests/exporters/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_python.py -------------------------------------------------------------------------------- /tests/exporters/test_qtpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_qtpdf.py -------------------------------------------------------------------------------- /tests/exporters/test_qtpng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_qtpng.py -------------------------------------------------------------------------------- /tests/exporters/test_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_rst.py -------------------------------------------------------------------------------- /tests/exporters/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_script.py -------------------------------------------------------------------------------- /tests/exporters/test_slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_slides.py -------------------------------------------------------------------------------- /tests/exporters/test_templateexporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_templateexporter.py -------------------------------------------------------------------------------- /tests/exporters/test_webpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/exporters/test_webpdf.py -------------------------------------------------------------------------------- /tests/fake_exporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/fake_exporters.py -------------------------------------------------------------------------------- /tests/files/Unexecuted_widget.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/Unexecuted_widget.ipynb -------------------------------------------------------------------------------- /tests/files/Unexecuted_widget_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/Unexecuted_widget_2.ipynb -------------------------------------------------------------------------------- /tests/files/Widget_List.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/Widget_List.ipynb -------------------------------------------------------------------------------- /tests/files/containerized_deployments.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/containerized_deployments.jpeg -------------------------------------------------------------------------------- /tests/files/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/hello.py -------------------------------------------------------------------------------- /tests/files/jupyter_nbconvert_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/jupyter_nbconvert_config.py -------------------------------------------------------------------------------- /tests/files/latex-linked-image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/latex-linked-image.ipynb -------------------------------------------------------------------------------- /tests/files/markdown_display_priority.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/markdown_display_priority.ipynb -------------------------------------------------------------------------------- /tests/files/notebook1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/notebook1.ipynb -------------------------------------------------------------------------------- /tests/files/notebook2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/notebook2.ipynb -------------------------------------------------------------------------------- /tests/files/notebook3_with_errors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/notebook3_with_errors.ipynb -------------------------------------------------------------------------------- /tests/files/notebook4_jpeg.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/notebook4_jpeg.ipynb -------------------------------------------------------------------------------- /tests/files/notebook5_embed_images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/notebook5_embed_images.ipynb -------------------------------------------------------------------------------- /tests/files/notebook_jl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/notebook_jl.ipynb -------------------------------------------------------------------------------- /tests/files/notebook_tags.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/notebook_tags.ipynb -------------------------------------------------------------------------------- /tests/files/override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/override.py -------------------------------------------------------------------------------- /tests/files/testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/files/testimage.png -------------------------------------------------------------------------------- /tests/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/filters/test_ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_ansi.py -------------------------------------------------------------------------------- /tests/filters/test_citation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_citation.py -------------------------------------------------------------------------------- /tests/filters/test_datatypefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_datatypefilter.py -------------------------------------------------------------------------------- /tests/filters/test_highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_highlight.py -------------------------------------------------------------------------------- /tests/filters/test_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_latex.py -------------------------------------------------------------------------------- /tests/filters/test_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_markdown.py -------------------------------------------------------------------------------- /tests/filters/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_metadata.py -------------------------------------------------------------------------------- /tests/filters/test_pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_pandoc.py -------------------------------------------------------------------------------- /tests/filters/test_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/filters/test_strings.py -------------------------------------------------------------------------------- /tests/postprocessors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/postprocessors/test_serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/postprocessors/test_serve.py -------------------------------------------------------------------------------- /tests/preprocessors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/preprocessors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/base.py -------------------------------------------------------------------------------- /tests/preprocessors/fake_kernelmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/fake_kernelmanager.py -------------------------------------------------------------------------------- /tests/preprocessors/files/HelloWorld.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/files/HelloWorld.ipynb -------------------------------------------------------------------------------- /tests/preprocessors/files/MixedMarkdown.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/files/MixedMarkdown.ipynb -------------------------------------------------------------------------------- /tests/preprocessors/test_clearmetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_clearmetadata.py -------------------------------------------------------------------------------- /tests/preprocessors/test_clearoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_clearoutput.py -------------------------------------------------------------------------------- /tests/preprocessors/test_coalescestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_coalescestreams.py -------------------------------------------------------------------------------- /tests/preprocessors/test_csshtmlheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_csshtmlheader.py -------------------------------------------------------------------------------- /tests/preprocessors/test_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_execute.py -------------------------------------------------------------------------------- /tests/preprocessors/test_extractattachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_extractattachments.py -------------------------------------------------------------------------------- /tests/preprocessors/test_extractoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_extractoutput.py -------------------------------------------------------------------------------- /tests/preprocessors/test_highlightmagics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_highlightmagics.py -------------------------------------------------------------------------------- /tests/preprocessors/test_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_latex.py -------------------------------------------------------------------------------- /tests/preprocessors/test_regexremove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_regexremove.py -------------------------------------------------------------------------------- /tests/preprocessors/test_sanitize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_sanitize.py -------------------------------------------------------------------------------- /tests/preprocessors/test_svg2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_svg2pdf.py -------------------------------------------------------------------------------- /tests/preprocessors/test_tagremove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/preprocessors/test_tagremove.py -------------------------------------------------------------------------------- /tests/test_nbconvertapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/test_nbconvertapp.py -------------------------------------------------------------------------------- /tests/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/testutils.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/utils/test_io.py -------------------------------------------------------------------------------- /tests/utils/test_pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/utils/test_pandoc.py -------------------------------------------------------------------------------- /tests/utils/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/utils/test_version.py -------------------------------------------------------------------------------- /tests/writers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/writers/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/writers/test_debug.py -------------------------------------------------------------------------------- /tests/writers/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/writers/test_files.py -------------------------------------------------------------------------------- /tests/writers/test_stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter/nbconvert/HEAD/tests/writers/test_stdout.py --------------------------------------------------------------------------------