Metadata-Version: 2.1
Name: nbenumerate
Version: 0.2.0
Summary: Automatically enumerate the markdown titles in jupyter notebooks
Author: An Hoang
Author-email: anhoang31415@gmail.com
Requires-Python: >=3.8.9,<4
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click (>=8.1.2)
Requires-Dist: nbformat (>=5.4.0,<6.0.0)
Description-Content-Type: text/markdown

# nbenumerate

Automatically enumerate the markdown titles in jupyter notebooks.

![Screenshot](./Screenshot.png)

## Installing nbenumerate

Install nbenumerate with pip:

```console
pip install nbenumerate
```

## Using nbenumerate

To run on one or more notebooks:

```console
nbenumerate path/to/notebook.ipynb
```

## Precommit Hook

Add this section to your `pre-commit-config.yaml` so that the `nbenumerate` script is executed before each commit with pre-commit.

```yaml
- repo: https://github.com/AnH0ang/nbenumerate
  rev: 0.2.0
  hooks:
    - id: nbenumerate
      name: nbenumerate
```

