Metadata-Version: 2.4
Name: mkdocs-add-number-plugin
Version: 1.2.2
Summary: MkDocs Plugin to automatically number the headings (h1-h6) in each markdown page and number the nav.
Home-page: https://github.com/shihr/mkdocs-add-number-plugin.git
Author: ignorantshr
Author-email: shrshraa@outlook.com
License: MIT
Keywords: mkdocs index add-number plugin
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: mkdocs>=1.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mkdocs-add-number-plugin)
![PyPI](https://img.shields.io/pypi/v/mkdocs-add-number-plugin)
![PyPI - Downloads](https://img.shields.io/pypi/dm/mkdocs-add-number-plugin)
![GitHub contributors](https://img.shields.io/github/contributors/timvink/mkdocs-add-number-plugin)
![PyPI - License](https://img.shields.io/pypi/l/mkdocs-add-number-plugin)

# mkdocs-add-number-plugin

[MkDocs](https://www.mkdocs.org/) plugin to automatically number the headings (h1-h6) in each markdown page and the nav. This only affects your rendered HTML and does not affect the markdown files.

## Setup

### use pip3
Install the plugin using pip3:

```bash
pip3 install mkdocs-add-number-plugin
```

### build from source
use git clone the source code to your computer and execute commands:

```shell
cd mkdocs-add-number-plugin
mkdir wheels
cd wheels
# if you have installed the plugin, uninstall it.
# pip3 uninstall mkdocs-add-number-plugin -y
pip3 wheel ..
pip3 install mkdocs_add_number_plugin-*-py3-none-any.whl
```

Next, add the following lines to your `mkdocs.yml`:

```yml
plugins:
  - search
  - add-number
```

> If you have no `plugins` entry in your config file yet, you'll likely also want to add the `search` plugin. MkDocs enables it by default if there is no `plugins` entry set.

## Usage

Example of multiple options set in the `mkdocs.yml` file:

```yml
plugins:
    - search
    - add-number:
        strict_mode: False
        order: 1
        excludes: 
        	- sql/
        	- command/rsync
        includes:
        	- sql/MySQL
```

> Note that each title in your markdown page must be contain a space after the heading tag: `# title` is correct, but `#title` will cause an error.

## Options

- `strict_mode`:
   - When set to `False` (default), orders the title numbers in your HTML page sequentially
   - When set to `True` it will follow the headings order strictly. You must start writing documents from h1, and cannot skip headings (such as `# title1\n### title2\n`).
- `order`: Heading level to start counting (number). Default is `1`. Example use case: When you want to use the first title of a document as the title of a document and you don't want to number it, set it to `order: 2`.
- `excludes`: Exclude certain files or folders in the `docs/` folder. Default is None. To exclude entire folders, append a slash (`folder/`).
- `includes`: The syntax is similar to `excludes` and it meant to be used together. You could for example exclude an entire folder but include several files from that folder.
- `increment_topnav`: Number top-level navigation.
- `increment_pages`: Number secondary navigation.


### Example of using `excludes`

For example, there is a mkdocs directory structure as follows:

```shell
$ tree .
.
├── docs
│ ├── command
│ │ ├── rsync.md
│ │ ├── sed.md
| ...
└── mkdocs.yml
```

To exclude rsync file, add the excludes option as follows:

```yaml
plugins:
     - search
     - add-number:
         excludes:
         	- command/rsync
```

If you want to exclude the command folder, add the excludes option as follows:

```yaml
plugins:
     - search
     - add-number:
         excludes:
         	- command/
```

### Example of using `increment_topnav`

Number top-level navigation :

```yaml
increment_topnav: True|False
```

The deault value is `False`.
**note**: Both `includes` and `excludes` options don't affect this option.

Effect after enabling:

![](img/increment_topnav.png)


### Example of using `increment_pages`

Number secondary navigation :

```yaml
increment_pages: True|False
```

The deault value is `False`.
**note**: Both `includes` and `excludes` options don't affect this option.

Effect after enabling:

![](img/increment_pages.png)


### Example of using `increment_topnav `with `increment_pages`

When both are turned on at the same time, the numbering effect of the secondary navigation is affected

![](img/increment_topnavANDpags.png)


------ CHINESE VERSION ------

# mkdocs-add-number-plugin

一个mkdocs插件：为你的每个页面的标题（h1~h6）自动编号。**这只影响你的html渲染结果，并不影响markdown文档本身！**

## 安装

### 使用 pip 安装

```shell
# if you have installed the plugin, uninstall it.
# pip3 uninstall mkdocs-add-number-plugin -y
pip3 install mkdocs-add-number-plugin
```

### 从源码构建安装
克隆此项目到你的计算机上，然后执行以下命令：

```shell
cd mkdocs-add-number-plugin
mkdir wheels
cd wheels
# if you have installed the plugin, uninstall it.
# pip3 uninstall mkdocs-add-number-plugin -y
pip3 wheel ..
pip3 install mkdocs_add_number_plugin-*-py3-none-any.whl
```

## 使用

在`mkdocs.yml`文件中的`plugins`选项添加此插件：

```yaml
plugins:
    - search
    - add-number:
        strict_mode: False
        order: 1
        excludes:
        	- sql/
        	- command/rsync
        includes:
        	- sql/MySQL
```


## 提供的选项

- `strict_mode`
- `order`
- `excludes`
- `includes`
- `increment_topnav`
- `increment_pages`

### strict_mode

指定编号的模式。

语法：

```yaml
strict_mode: True|False
```

2. True：严格模式。顺序地为你的html页面的标题编号。必须从h1开始撰写文档，且不能有跳级（比如`# title1\n### title2\n`，*title2*不会被编号，可以选用非严格模式为其编号），但是可以不必用到所有级数。
2. False：非严格模式（默认值）。顺序地为你的html页面的标题编号。没有上述的限制。

**注意**：两种模式的标题级数都不能有倒序出现。比如`### title1\n# title2\n`，这会导致编号异常。并且每个标题后面都要有空格与文字隔开，比如这样`# title`是正确的，而这样`#title`是不行的。


#### 效果

非严格模式效果：

![](img/none_strict_mode.png)

严格模式效果：

![](img/strict_mode.png)


### order

从第几个标题开始编号。在某些场景下是有用的：你想要将文档的第一个标题作为文档的题目而不想对其进行编号时，设置为`order: 2`。

语法：

```yaml
order: 数字
```

数字必须是大于1的自然数，默认值是1。


### excludes

排除某些文件或文件夹。

语法：

```yaml
excludes: 列表|'*'
```

- 列表：遵循`yaml`文件的列表语法，文件或文件夹填写`docs`文件夹下的相对路径，不必填写文件后缀。**以`/`或`\`结尾的值表示文件夹**。
- '*'：表示排除所有的文件。因为默认值为空列表`[]`，意味着对所有的文件进行编号，所以你需要使用此值来不对所有的文件进行编号。

##### 例子

比如现在有一 mkdocs 目录结构如下：

```shell
$ tree .
.
├── docs
│   ├── command
│   │   ├── rsync.md
│   │   ├── sed.md
|   ...
└── mkdocs.yml
```

想要排除rsync文件，添加的excludes选项如下：

```yaml
plugins: 
    - search
    - add-number:
        excludes: 
        	- command\rsync
```

若想要排除command文件夹，添加的excludes选项如下：

```yaml
plugins: 
    - search
    - add-number:
        excludes: 
        	- command\
```


### includes

包含某些文件或文件夹。

语法与`excludes`类似：

```yaml
includes: 列表
```

在被`excludes`排除的文件或文件夹如果在`includes`选项中出现，那么会对其进行编号。默认值为空列表`[]`。

**注意**：includes是作为excludes的辅助选项使用的（意味着必须和excludes一起使用，单独使用此选项没有意义）。

### increment_topnav

对顶级目录索引进行编号。

语法：

```yaml
increment_topnav: True|False
```

默认值为 False。
**注意**：`includes`和`excludes`选项不会影响此选项。

开启之后的效果：

![](img/increment_topnav.png)


### increment_pages

对二级目录索引进行编号。

语法：

```yaml
increment_pages: True|False
```

默认值为 False。
**注意**：`includes`和`excludes`选项不会影响此选项。

开启之后的效果：

![](img/increment_pages.png)


### increment_topnav 与 increment_pages 共用

两者同时开启时会影响二级目录索引的编号效果：

![](img/increment_topnavANDpags.png)

