jtpio / jupyterlab-celltags

A JupyterLab extension for notebook cell tags

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jupyterlab-celltags

Binder

The JupyterLab cell tags extension enables users to easily add, view, and manipulate descriptive tags for notebook cells. The extension includes the functionality to select all cells with a given tag, supporting the performance of any operation on those 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-celltags
# 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

About

A JupyterLab extension for notebook cell tags

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:TypeScript 99.5%Language:CSS 0.4%Language:Shell 0.2%