Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lsst-epo/jupyterlab_celltools
Cell tools for Jupyter Notebooks
https://github.com/lsst-epo/jupyterlab_celltools
Last synced: about 1 month ago
JSON representation
Cell tools for Jupyter Notebooks
- Host: GitHub
- URL: https://github.com/lsst-epo/jupyterlab_celltools
- Owner: lsst-epo
- License: mit
- Created: 2018-04-06T23:17:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-26T23:12:09.000Z (over 6 years ago)
- Last Synced: 2024-10-02T04:41:34.610Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 33.2 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jupyterlab_hidecode
A JupyterLab extension.
## Prerequisites
* JupyterLab
## Installation
```bash
jupyter labextension install jupyterlab_hidecode
```## Development
For a development install (requires npm version 4 or later), do the following in the repository directory:
```bash
npm install
npm run build
jupyter labextension link .
```To rebuild the package and the JupyterLab app:
```bash
npm run build
jupyter lab build
```To hide the cells code, add the following to the Metadata:
```json
{
"hideCode": "true"
}
```To make cells read only, add the following to the Metadata:
```json
{
"readOnly": "true"
}
```