Metadata-Version: 2.1
Name: jupyterlab-deck
Version: 0.1.1
Summary: A lightweight presentation mode for JupyterLab.
Author-email: jupyterlab-deck contributors <deathbeds@googlegroups.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: Framework :: Jupyter :: JupyterLab :: 3
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions
Classifier: Framework :: Jupyter :: JupyterLab
Classifier: Framework :: Jupyter
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Requires-Dist: jupyterlab >=3,<4
Project-URL: Bug Tracker, https://github.com/deathbeds/jupyterlab-deck/issues
Project-URL: Changelog, https://github.com/deathbeds/jupyterlab-deck/blob/main/CHANGELOG.md
Project-URL: Documentation, https://jupyterlab-deck.rtfd.io
Project-URL: Source, https://github.com/deathbeds/jupyterlab-deck

# `jupyterlab-deck`

|        docs         |                        demo                         |        ci         |                      install                      |       extend        |
| :-----------------: | :-------------------------------------------------: | :---------------: | :-----------------------------------------------: | :-----------------: |
| [![rtd-badge]][rtd] | [![binder-badge]][binder]<br/>[![lite-badge]][lite] | [![ci-badge]][ci] | [![pypi-badge]][pypi]<br/>[![conda-badge]][conda] | [![npm-badge]][npm] |

[binder-badge]: https://mybinder.org/badge_logo.svg
[binder]:
  https://mybinder.org/v2/gh/deathbeds/jupyterlab-deck/HEAD?urlpath=lab/tree/examples/README.ipynb
[ci-badge]: https://img.shields.io/github/workflow/status/deathbeds/jupyterlab-deck/CI
[ci]: https://github.com/deathbeds/jupyterlab-deck/actions?query=branch%3Amain
[rtd-badge]: https://img.shields.io/readthedocs/jupyterlab-deck
[rtd]: https://jupyterlab-deck.rtfd.io
[lite-badge]:
  https://raw.githubusercontent.com/jupyterlite/jupyterlite/main/docs/_static/badge-launch.svg
[lite]:
  https://jupyterlab-deck.rtfd.io/en/stable/_static/lab/index.html?path=README.ipynb
[conda-badge]: https://img.shields.io/conda/vn/conda-forge/jupyterlab-deck
[conda]: https://anaconda.org/conda-forge/jupyterlab-deck
[pypi-badge]: https://img.shields.io/pypi/v/jupyterlab-deck
[pypi]: https://pypi.org/project/jupyterlab-deck/
[npm]: https://npmjs.com/package/@deathbeds/jupyterlab-deck
[npm-badge]: https://img.shields.io/npm/v/@deathbeds/jupyterlab-deck

> Lightweight presentations for JupyterLab

## Installation

```bash
pip install jupyterlab-deck
```

or

```
mamba install -c conda-forge jupyterlab-deck # or conda, if you must
```

> See [`CONTRIBUTING.md`][contributing] for a development installation.

[contributing]: https://github.com/deathbeds/jupyterlab-deck

## Usage

- Add _slide metadata_ with the _Advanced tools_
- When viewing a _Notebook_, click the _deck_ icon
- Use the _navigation controls_ or _keyboard shortcuts_ to navigate through the deck
- Exit the deck with <kbd>shift+esc</kbd>

## Uninstall

```
pip uninstall jupyterlab-deck
```

or

```
mamba remove jupyterlab-deck # or conda if you must
```

## Configuration

### Enabling Deck Mode at startup

- see the JupyterLab docs about [settings `overrides.json`][overrides].

```json
{
  "@deathbeds/jupyterlab-deck:plugin": {
    "active": true
  }
}
```

[overrides]:
  https://jupyterlab.readthedocs.io/en/stable/user/directories.html#overrides-json

