├── .github └── workflows │ ├── check-release.yml │ ├── enforce-label.yml │ ├── main.yml │ ├── prep-release.yml │ └── publish-release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── dev-environment.yml ├── docs ├── _static │ ├── icon.svg │ └── try_examples.css ├── bqplot.ipynb ├── changelog.md ├── conf.py ├── configuration.md ├── custom_contents │ ├── data.csv │ └── read_csv.ipynb ├── directives │ ├── jupyterlite.md │ ├── my_markdown_notebook.md │ ├── my_notebook.ipynb │ ├── notebooklite.md │ ├── replite.md │ ├── try_examples.md │ └── voici.md ├── environment.yml ├── full.md ├── index.md ├── installation.md └── sample_overrides.json ├── jupyterlite_sphinx ├── __init__.py ├── _try_examples.py ├── jupyterlite_sphinx.css ├── jupyterlite_sphinx.js └── jupyterlite_sphinx.py └── pyproject.toml /.github/workflows/check-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/.github/workflows/check-release.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/.github/workflows/enforce-label.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/.github/workflows/prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/RELEASE.md -------------------------------------------------------------------------------- /dev-environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/dev-environment.yml -------------------------------------------------------------------------------- /docs/_static/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/_static/icon.svg -------------------------------------------------------------------------------- /docs/_static/try_examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/_static/try_examples.css -------------------------------------------------------------------------------- /docs/bqplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/bqplot.ipynb -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CHANGELOG.md 2 | ``` 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/custom_contents/data.csv: -------------------------------------------------------------------------------- 1 | A,B,C,D 2 | 1,2,3,4 3 | 7,8,9,10 4 | 32,45,90,54 5 | -------------------------------------------------------------------------------- /docs/custom_contents/read_csv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/custom_contents/read_csv.ipynb -------------------------------------------------------------------------------- /docs/directives/jupyterlite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/directives/jupyterlite.md -------------------------------------------------------------------------------- /docs/directives/my_markdown_notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/directives/my_markdown_notebook.md -------------------------------------------------------------------------------- /docs/directives/my_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/directives/my_notebook.ipynb -------------------------------------------------------------------------------- /docs/directives/notebooklite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/directives/notebooklite.md -------------------------------------------------------------------------------- /docs/directives/replite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/directives/replite.md -------------------------------------------------------------------------------- /docs/directives/try_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/directives/try_examples.md -------------------------------------------------------------------------------- /docs/directives/voici.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/directives/voici.md -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/full.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/sample_overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/docs/sample_overrides.json -------------------------------------------------------------------------------- /jupyterlite_sphinx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/jupyterlite_sphinx/__init__.py -------------------------------------------------------------------------------- /jupyterlite_sphinx/_try_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/jupyterlite_sphinx/_try_examples.py -------------------------------------------------------------------------------- /jupyterlite_sphinx/jupyterlite_sphinx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/jupyterlite_sphinx/jupyterlite_sphinx.css -------------------------------------------------------------------------------- /jupyterlite_sphinx/jupyterlite_sphinx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/jupyterlite_sphinx/jupyterlite_sphinx.js -------------------------------------------------------------------------------- /jupyterlite_sphinx/jupyterlite_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/jupyterlite_sphinx/jupyterlite_sphinx.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterlite/jupyterlite-sphinx/HEAD/pyproject.toml --------------------------------------------------------------------------------