├── .coveragerc ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .mailmap ├── Changelog ├── LICENSE ├── MANIFEST.in ├── README.rst ├── doc-requirements.txt ├── doc ├── .gitignore ├── Makefile ├── README.rst ├── _static │ └── .gitignore ├── code_links.rst ├── conf.py ├── devel │ ├── design.rst │ ├── improving_markdown.rst │ ├── make_release.rst │ └── sphinx_example_project.rst ├── example_notebook.ipynb ├── index.rst ├── introduction.rst ├── links_names.inc ├── make.bat ├── markdown_base.rst ├── mpl_interactive.rst ├── nbplots.rst ├── scripts.rst └── worked_example.rst ├── min-requirements.txt ├── nb2plots ├── __init__.py ├── _version.py ├── codelinks.py ├── commands.py ├── converters.py ├── doctree2md.py ├── doctree2nb.py ├── doctree2py.py ├── from_notebook.py ├── mpl_interactive.py ├── nbplots.py ├── runroles.py ├── sphinx2foos.py ├── strdiff.py ├── testing │ ├── __init__.py │ ├── convutils.py │ ├── mockapp.py │ └── nbtesters.py └── tests │ ├── __init__.py │ ├── conftest.py │ ├── data │ ├── converted_example.rst │ ├── converted_plus_notebooks.ipynb │ ├── converted_plus_notebooks.py │ ├── example_notebook.ipynb │ ├── small.ipynb │ └── small.rst │ ├── futz │ ├── .gitignore │ ├── Makefile │ └── README.rst │ ├── otherpages │ └── some_plots.rst │ ├── proj1 │ ├── .gitignore │ ├── README.md │ ├── _static │ │ ├── .gitignore │ │ └── README.txt │ ├── a_page.rst │ ├── conf.py │ └── index.rst │ ├── rst_md_files │ ├── blockquotes.ipynb │ ├── blockquotes.md │ ├── blockquotes.py │ ├── blockquotes.rst │ ├── code.ipynb │ ├── code.md │ ├── code.py │ ├── code.rst │ ├── comment.ipynb │ ├── comment.md │ ├── comment.py │ ├── comment.rst │ ├── cross_references.ipynb │ ├── cross_references.md │ ├── cross_references.py │ ├── cross_references.rst │ ├── cross_references.smd │ ├── definitions.ipynb │ ├── definitions.md │ ├── definitions.py │ ├── definitions.rst │ ├── docinfo.ipynb │ ├── docinfo.md │ ├── docinfo.py │ ├── docinfo.rst │ ├── docinfo.smd │ ├── doctests.ipynb │ ├── doctests.md │ ├── doctests.py │ ├── doctests.rst │ ├── escaping.ipynb │ ├── escaping.md │ ├── escaping.py │ ├── escaping.rst │ ├── index.ipynb │ ├── index.md │ ├── index.py │ ├── index.rst │ ├── index.smd │ ├── links.ipynb │ ├── links.md │ ├── links.py │ ├── links.rst │ ├── links.smd │ ├── lists.ipynb │ ├── lists.md │ ├── lists.py │ ├── lists.rst │ ├── literals.ipynb │ ├── literals.md │ ├── literals.py │ ├── literals.rst │ ├── literals.smd │ ├── math_markup.ipynb │ ├── math_markup.md │ ├── math_markup.py │ ├── math_markup.rst │ ├── math_markup.smd │ ├── nbplot.ipynb │ ├── nbplot.md │ ├── nbplot.py │ ├── nbplot.rst │ ├── nbplot.smd │ ├── only.ipynb │ ├── only.md │ ├── only.py │ ├── only.rst │ ├── only.smd │ ├── sect_text.ipynb │ ├── sect_text.md │ ├── sect_text.py │ ├── sect_text.rst │ ├── sect_text.smd │ ├── sections.ipynb │ ├── sections.md │ ├── sections.py │ ├── sections.rst │ ├── sections.smd │ ├── substitution.ipynb │ ├── substitution.md │ ├── substitution.py │ ├── substitution.rst │ ├── subtitle.ipynb │ ├── subtitle.md │ ├── subtitle.py │ ├── subtitle.rst │ └── subtitle.smd │ ├── test_builders.py │ ├── test_codelinks.py │ ├── test_config.py │ ├── test_converters.py │ ├── test_doctree2md.py │ ├── test_doctree2nb.py │ ├── test_doctree2py.py │ ├── test_from_notebook.py │ ├── test_mpl_interactive.py │ ├── test_nbplots.py │ ├── test_proj1.py │ ├── test_regression.py │ ├── test_runroles.py │ ├── test_scripts.py │ ├── test_sphinx2md.py │ ├── test_strdiff.py │ └── test_timeout.py ├── requirements.txt ├── scripts ├── nb2plots ├── rst2md ├── sphinx2md ├── sphinx2nb ├── sphinx2pxml └── sphinx2py ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tools └── futz ├── tox.ini └── versioneer.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | nb2plots/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/.mailmap -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/README.rst -------------------------------------------------------------------------------- /doc-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc-requirements.txt -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/README.rst -------------------------------------------------------------------------------- /doc/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/code_links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/code_links.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/devel/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/devel/design.rst -------------------------------------------------------------------------------- /doc/devel/improving_markdown.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/devel/improving_markdown.rst -------------------------------------------------------------------------------- /doc/devel/make_release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/devel/make_release.rst -------------------------------------------------------------------------------- /doc/devel/sphinx_example_project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/devel/sphinx_example_project.rst -------------------------------------------------------------------------------- /doc/example_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/example_notebook.ipynb -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/introduction.rst -------------------------------------------------------------------------------- /doc/links_names.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/links_names.inc -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/markdown_base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/markdown_base.rst -------------------------------------------------------------------------------- /doc/mpl_interactive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/mpl_interactive.rst -------------------------------------------------------------------------------- /doc/nbplots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/nbplots.rst -------------------------------------------------------------------------------- /doc/scripts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/scripts.rst -------------------------------------------------------------------------------- /doc/worked_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/doc/worked_example.rst -------------------------------------------------------------------------------- /min-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/min-requirements.txt -------------------------------------------------------------------------------- /nb2plots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/__init__.py -------------------------------------------------------------------------------- /nb2plots/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/_version.py -------------------------------------------------------------------------------- /nb2plots/codelinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/codelinks.py -------------------------------------------------------------------------------- /nb2plots/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/commands.py -------------------------------------------------------------------------------- /nb2plots/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/converters.py -------------------------------------------------------------------------------- /nb2plots/doctree2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/doctree2md.py -------------------------------------------------------------------------------- /nb2plots/doctree2nb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/doctree2nb.py -------------------------------------------------------------------------------- /nb2plots/doctree2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/doctree2py.py -------------------------------------------------------------------------------- /nb2plots/from_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/from_notebook.py -------------------------------------------------------------------------------- /nb2plots/mpl_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/mpl_interactive.py -------------------------------------------------------------------------------- /nb2plots/nbplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/nbplots.py -------------------------------------------------------------------------------- /nb2plots/runroles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/runroles.py -------------------------------------------------------------------------------- /nb2plots/sphinx2foos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/sphinx2foos.py -------------------------------------------------------------------------------- /nb2plots/strdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/strdiff.py -------------------------------------------------------------------------------- /nb2plots/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/testing/__init__.py -------------------------------------------------------------------------------- /nb2plots/testing/convutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/testing/convutils.py -------------------------------------------------------------------------------- /nb2plots/testing/mockapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/testing/mockapp.py -------------------------------------------------------------------------------- /nb2plots/testing/nbtesters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/testing/nbtesters.py -------------------------------------------------------------------------------- /nb2plots/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # nb2plots.tests package 2 | -------------------------------------------------------------------------------- /nb2plots/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/conftest.py -------------------------------------------------------------------------------- /nb2plots/tests/data/converted_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/data/converted_example.rst -------------------------------------------------------------------------------- /nb2plots/tests/data/converted_plus_notebooks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/data/converted_plus_notebooks.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/data/converted_plus_notebooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/data/converted_plus_notebooks.py -------------------------------------------------------------------------------- /nb2plots/tests/data/example_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/data/example_notebook.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/data/small.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/data/small.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/data/small.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/data/small.rst -------------------------------------------------------------------------------- /nb2plots/tests/futz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/futz/.gitignore -------------------------------------------------------------------------------- /nb2plots/tests/futz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/futz/Makefile -------------------------------------------------------------------------------- /nb2plots/tests/futz/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/futz/README.rst -------------------------------------------------------------------------------- /nb2plots/tests/otherpages/some_plots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/otherpages/some_plots.rst -------------------------------------------------------------------------------- /nb2plots/tests/proj1/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /nb2plots/tests/proj1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/proj1/README.md -------------------------------------------------------------------------------- /nb2plots/tests/proj1/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb2plots/tests/proj1/_static/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/proj1/_static/README.txt -------------------------------------------------------------------------------- /nb2plots/tests/proj1/a_page.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/proj1/a_page.rst -------------------------------------------------------------------------------- /nb2plots/tests/proj1/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/proj1/conf.py -------------------------------------------------------------------------------- /nb2plots/tests/proj1/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/proj1/index.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/blockquotes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/blockquotes.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/blockquotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/blockquotes.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/blockquotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/blockquotes.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/blockquotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/blockquotes.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/code.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/code.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/code.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/code.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/comment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/comment.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/comment.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/comment.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/comment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/comment.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/cross_references.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/cross_references.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/cross_references.md: -------------------------------------------------------------------------------- 1 | skip 2 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/cross_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/cross_references.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/cross_references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/cross_references.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/cross_references.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/cross_references.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/definitions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/definitions.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/definitions.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/definitions.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/definitions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/definitions.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/docinfo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/docinfo.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/docinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/docinfo.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/docinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/docinfo.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/docinfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/docinfo.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/docinfo.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/docinfo.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/doctests.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/doctests.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/doctests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/doctests.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/doctests.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/doctests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/doctests.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/escaping.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/escaping.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/escaping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/escaping.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/escaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/escaping.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/escaping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/escaping.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/index.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/index.md: -------------------------------------------------------------------------------- 1 | skip 2 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/index.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/index.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/index.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/index.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/links.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/links.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/links.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/links.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/links.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/links.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/links.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/lists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/lists.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/lists.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/lists.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/lists.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/lists.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/literals.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/literals.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/literals.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/literals.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/literals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/literals.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/literals.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/literals.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/math_markup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/math_markup.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/math_markup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/math_markup.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/math_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/math_markup.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/math_markup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/math_markup.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/math_markup.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/math_markup.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/nbplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/nbplot.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/nbplot.md: -------------------------------------------------------------------------------- 1 | skip 2 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/nbplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/nbplot.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/nbplot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/nbplot.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/nbplot.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/nbplot.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/only.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/only.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/only.md: -------------------------------------------------------------------------------- 1 | skip 2 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/only.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/only.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/only.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/only.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/only.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sect_text.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/sect_text.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sect_text.md: -------------------------------------------------------------------------------- 1 | # A section 2 | 3 | Some *text*. 4 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sect_text.py: -------------------------------------------------------------------------------- 1 | # ## A section 2 | # 3 | # Some *text*. 4 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sect_text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/sect_text.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sect_text.smd: -------------------------------------------------------------------------------- 1 | ## A section 2 | 3 | Some *text*. 4 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/sections.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/sections.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/sections.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/sections.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/sections.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/sections.smd -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/substitution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/substitution.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/substitution.md: -------------------------------------------------------------------------------- 1 | Here is a some *actual* text substituted value. 2 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/substitution.py: -------------------------------------------------------------------------------- 1 | # Here is a some *actual* text substituted value. 2 | -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/substitution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/substitution.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/subtitle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/subtitle.ipynb -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/subtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/subtitle.md -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/subtitle.py -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/subtitle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/subtitle.rst -------------------------------------------------------------------------------- /nb2plots/tests/rst_md_files/subtitle.smd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/rst_md_files/subtitle.smd -------------------------------------------------------------------------------- /nb2plots/tests/test_builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_builders.py -------------------------------------------------------------------------------- /nb2plots/tests/test_codelinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_codelinks.py -------------------------------------------------------------------------------- /nb2plots/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_config.py -------------------------------------------------------------------------------- /nb2plots/tests/test_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_converters.py -------------------------------------------------------------------------------- /nb2plots/tests/test_doctree2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_doctree2md.py -------------------------------------------------------------------------------- /nb2plots/tests/test_doctree2nb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_doctree2nb.py -------------------------------------------------------------------------------- /nb2plots/tests/test_doctree2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_doctree2py.py -------------------------------------------------------------------------------- /nb2plots/tests/test_from_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_from_notebook.py -------------------------------------------------------------------------------- /nb2plots/tests/test_mpl_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_mpl_interactive.py -------------------------------------------------------------------------------- /nb2plots/tests/test_nbplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_nbplots.py -------------------------------------------------------------------------------- /nb2plots/tests/test_proj1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_proj1.py -------------------------------------------------------------------------------- /nb2plots/tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_regression.py -------------------------------------------------------------------------------- /nb2plots/tests/test_runroles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_runroles.py -------------------------------------------------------------------------------- /nb2plots/tests/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_scripts.py -------------------------------------------------------------------------------- /nb2plots/tests/test_sphinx2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_sphinx2md.py -------------------------------------------------------------------------------- /nb2plots/tests/test_strdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_strdiff.py -------------------------------------------------------------------------------- /nb2plots/tests/test_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/nb2plots/tests/test_timeout.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/nb2plots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/scripts/nb2plots -------------------------------------------------------------------------------- /scripts/rst2md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/scripts/rst2md -------------------------------------------------------------------------------- /scripts/sphinx2md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/scripts/sphinx2md -------------------------------------------------------------------------------- /scripts/sphinx2nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/scripts/sphinx2nb -------------------------------------------------------------------------------- /scripts/sphinx2pxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/scripts/sphinx2pxml -------------------------------------------------------------------------------- /scripts/sphinx2py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/scripts/sphinx2py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tools/futz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/tools/futz -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/tox.ini -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/nb2plots/HEAD/versioneer.py --------------------------------------------------------------------------------