├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── team-meeting.md ├── dependabot.yml └── workflows │ ├── create-meeting-issue.yml │ ├── linkcheck.yml │ └── trigger-docs-build.yml ├── .gitignore ├── .readthedocs.yml ├── README.md ├── docs ├── Makefile ├── _static │ ├── custom.css │ ├── logo-square.png │ ├── logo-wide.svg │ ├── python-stack.excalidraw.svg │ └── videos │ │ ├── jupyterlab-desktop.mp4 │ │ ├── jupyterlab-markdown-preview.mp4 │ │ ├── jupyterlab-markup-dark.mp4 │ │ ├── jupyterlab-myst-inline.mp4 │ │ ├── pythia-interactive.mp4 │ │ ├── pythia-thebe.mp4 │ │ └── pythia-xref.mp4 ├── blog.md ├── blog │ ├── 2023 │ │ └── new-project-members.md │ ├── 2020-02-25-hello-world.md │ ├── 2020-08-07-announce-book.md │ ├── 2021-06-18-update-toc.md │ ├── 2021-06-5-release-jb-v0.11.1.md │ ├── 2021-12-18-agu-2021.md │ ├── 2022-11-16-project-update.md │ ├── 2023-02-09-announce-mystjs.md │ ├── 2023-03-07-call-for-myst-templates.md │ ├── 2023-06-27-jupyterlab-myst.md │ ├── 2024-05-20-jupyter-book-myst.md │ ├── 2024-06-14-project-pythia-mystmd.md │ └── images │ │ ├── build-process.gif │ │ ├── citation-example.png │ │ ├── figure-example.png │ │ ├── grant-star-timeline.png │ │ ├── jb-ui.png │ │ ├── jtex-build-templates-easily-cli.png │ │ ├── jupyterlab-myst.png │ │ ├── myst-export-to-any-template.png │ │ ├── myst-list-templates.png │ │ ├── myst-open-template-repository.png │ │ ├── myst-show-template-details.png │ │ ├── pythia-gallery.png │ │ └── pythia-jb-myst.png ├── conf.py ├── contribute.md ├── feature-vote.md ├── gallery.md ├── gallery.yml ├── index.md ├── team_panels_code.txt └── tools.md ├── requirements.txt └── tox.ini /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/team-meeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/.github/ISSUE_TEMPLATE/team-meeting.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/create-meeting-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/.github/workflows/create-meeting-issue.yml -------------------------------------------------------------------------------- /.github/workflows/linkcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/.github/workflows/linkcheck.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-docs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/.github/workflows/trigger-docs-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/logo-square.png -------------------------------------------------------------------------------- /docs/_static/logo-wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/logo-wide.svg -------------------------------------------------------------------------------- /docs/_static/python-stack.excalidraw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/python-stack.excalidraw.svg -------------------------------------------------------------------------------- /docs/_static/videos/jupyterlab-desktop.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/videos/jupyterlab-desktop.mp4 -------------------------------------------------------------------------------- /docs/_static/videos/jupyterlab-markdown-preview.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/videos/jupyterlab-markdown-preview.mp4 -------------------------------------------------------------------------------- /docs/_static/videos/jupyterlab-markup-dark.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/videos/jupyterlab-markup-dark.mp4 -------------------------------------------------------------------------------- /docs/_static/videos/jupyterlab-myst-inline.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/videos/jupyterlab-myst-inline.mp4 -------------------------------------------------------------------------------- /docs/_static/videos/pythia-interactive.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/videos/pythia-interactive.mp4 -------------------------------------------------------------------------------- /docs/_static/videos/pythia-thebe.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/videos/pythia-thebe.mp4 -------------------------------------------------------------------------------- /docs/_static/videos/pythia-xref.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/_static/videos/pythia-xref.mp4 -------------------------------------------------------------------------------- /docs/blog.md: -------------------------------------------------------------------------------- 1 | # Blog posts 2 | 3 | % This page will be replaced by ablog 4 | -------------------------------------------------------------------------------- /docs/blog/2020-02-25-hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2020-02-25-hello-world.md -------------------------------------------------------------------------------- /docs/blog/2020-08-07-announce-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2020-08-07-announce-book.md -------------------------------------------------------------------------------- /docs/blog/2021-06-18-update-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2021-06-18-update-toc.md -------------------------------------------------------------------------------- /docs/blog/2021-06-5-release-jb-v0.11.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2021-06-5-release-jb-v0.11.1.md -------------------------------------------------------------------------------- /docs/blog/2021-12-18-agu-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2021-12-18-agu-2021.md -------------------------------------------------------------------------------- /docs/blog/2022-11-16-project-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2022-11-16-project-update.md -------------------------------------------------------------------------------- /docs/blog/2023-02-09-announce-mystjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2023-02-09-announce-mystjs.md -------------------------------------------------------------------------------- /docs/blog/2023-03-07-call-for-myst-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2023-03-07-call-for-myst-templates.md -------------------------------------------------------------------------------- /docs/blog/2023-06-27-jupyterlab-myst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2023-06-27-jupyterlab-myst.md -------------------------------------------------------------------------------- /docs/blog/2023/new-project-members.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2023/new-project-members.md -------------------------------------------------------------------------------- /docs/blog/2024-05-20-jupyter-book-myst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2024-05-20-jupyter-book-myst.md -------------------------------------------------------------------------------- /docs/blog/2024-06-14-project-pythia-mystmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/2024-06-14-project-pythia-mystmd.md -------------------------------------------------------------------------------- /docs/blog/images/build-process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/build-process.gif -------------------------------------------------------------------------------- /docs/blog/images/citation-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/citation-example.png -------------------------------------------------------------------------------- /docs/blog/images/figure-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/figure-example.png -------------------------------------------------------------------------------- /docs/blog/images/grant-star-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/grant-star-timeline.png -------------------------------------------------------------------------------- /docs/blog/images/jb-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/jb-ui.png -------------------------------------------------------------------------------- /docs/blog/images/jtex-build-templates-easily-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/jtex-build-templates-easily-cli.png -------------------------------------------------------------------------------- /docs/blog/images/jupyterlab-myst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/jupyterlab-myst.png -------------------------------------------------------------------------------- /docs/blog/images/myst-export-to-any-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/myst-export-to-any-template.png -------------------------------------------------------------------------------- /docs/blog/images/myst-list-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/myst-list-templates.png -------------------------------------------------------------------------------- /docs/blog/images/myst-open-template-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/myst-open-template-repository.png -------------------------------------------------------------------------------- /docs/blog/images/myst-show-template-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/myst-show-template-details.png -------------------------------------------------------------------------------- /docs/blog/images/pythia-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/pythia-gallery.png -------------------------------------------------------------------------------- /docs/blog/images/pythia-jb-myst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/blog/images/pythia-jb-myst.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/feature-vote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/feature-vote.md -------------------------------------------------------------------------------- /docs/gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/gallery.md -------------------------------------------------------------------------------- /docs/gallery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/gallery.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/team_panels_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/team_panels_code.txt -------------------------------------------------------------------------------- /docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/docs/tools.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executablebooks/meta/HEAD/tox.ini --------------------------------------------------------------------------------