JSPM

@jupyterlab/celltags

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1946
  • Score
    100M100P100Q124078F
  • License BSD-3-Clause

Extension for adding descriptive tags to notebook cells (Beta)

Package Exports

  • @jupyterlab/celltags

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@jupyterlab/celltags) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jupyterlab-celltags

Binder

A JupyterLab extension for notebook cell tags, with an interface for adding, editing, and deleting descriptive tags. Includes the ability to select all cells with a certain tag, allowing users to quickly run, hide, or delete a group of cells.

Prerequisites

  • JupyterLab

Install

jupyter labextension install @jupyterlab/celltags

Development

Contributing

If you would like to contribute to the project, please read our contributor documentation.

JupyterLab follows the official Jupyter Code of Conduct.

Install

Requires node 4+ and npm 4+

# Clone the repo to your local environment
git clone https://github.com/jupyterlab/jupyterlab-celltags.git
cd jupyterlab-shortcelltagscutui
# Install dependencies
npm install # or yarn
# Build Typescript source
npm run build # or yarn build
# Link your development version of the extension with JupyterLab
jupyter labextension link .
# Rebuild Typescript source after making changes
npm run build # or yarn build

To rebuild the package and the JupyterLab app:

npm run build
jupyter lab build