Crates.io | markdown-toc |
lib.rs | markdown-toc |
version | 0.2.0 |
source | src |
created_at | 2018-07-29 10:37:14.954702 |
updated_at | 2020-08-10 04:11:07.131565 |
description | Markdown Table of Contents generator |
homepage | |
repository | https://github.com/pbzweihander/markdown-toc |
max_upload_size | |
id | 76454 |
size | 51,946 |
Table-of-Contents (toc) generator, written in Rust. Inspired by sebdah/markdown-toc.
docker run -v $PWD:/app -w /app --rm -it pbzweihander/markdown-toc README.md
cargo install markdown-toc
md-toc README.md
git clone https://github.com/pbzweihander/markdown-toc.git
cd markdown-toc
cargo build --release
cargo install --path .
md-toc README.md
$ md-toc -h
Usage: md-toc FILE [options]
FILE The Markdown file to parse for table of contents,
or "-" to read from stdin
Options:
-h, --help print this help message
--bullet {str} Custom bullet of the ToC list. (default: "1.")
--indent {int} Indentation of the ToC list. (default: 4)
--max-depth {int}
Max depth of headers to include.
--min-depth {int}
Min depth of headers to include. (default: 0)
--header {str} Custom header of the ToC. (default: "## Table of
Contents")
--no-link Exclude links in ToC
--no-header Exclude the header of ToC
md-toc README.md
Output:
## Table of Contents
1. [markdown-toc](#markdown-toc)
1. [Table of Contents](#table-of-contents)
1. [Installation](#installation)
1. [Run in Docker](#run-in-docker)
1. [Install with cargo](#install-with-cargo)
1. [Build yourself](#build-yourself)
1. [Usage](#usage)
1. [Generating basic ToC](#generating-basic-toc)
1. [Customizing bullets](#customizing-bullets)
1. [Limiting the depth of headers](#limiting-the-depth-of-headers)
1. [Excluding links](#excluding-links)
1. [Customizing header of ToC](#customizing-header-of-toc)
1. [Excluding header](#excluding-header)
md-toc README.md --bullet "-" --indent 2
Output:
## Table of Contents
- [markdown-toc](#markdown-toc)
- [Table of Contents](#table-of-contents)
- [Installation](#installation)
- [Run in Docker](#run-in-docker)
- [Install with cargo](#install-with-cargo)
- [Build yourself](#build-yourself)
- [Usage](#usage)
- [Generating basic ToC](#generating-basic-toc)
- [Customizing bullets](#customizing-bullets)
- [Limiting the depth of headers](#limiting-the-depth-of-headers)
- [Excluding links](#excluding-links)
- [Customizing header of ToC](#customizing-header-of-toc)
- [Excluding header](#excluding-header)
md-toc README.md --min-depth 1 --max-depth 2
Output:
## Table of Contents
1. [Table of Contents](#table-of-contents)
1. [Installation](#installation)
1. [Run in Docker](#run-in-docker)
1. [Install with cargo](#install-with-cargo)
1. [Build yourself](#build-yourself)
1. [Usage](#usage)
1. [Generating basic ToC](#generating-basic-toc)
1. [Customizing bullets](#customizing-bullets)
1. [Limiting the depth of headers](#limiting-the-depth-of-headers)
1. [Excluding links](#excluding-links)
1. [Customizing header of ToC](#customizing-header-of-toc)
md-toc README.md --no-link
Output:
## Table of Contents
1. markdown-toc
1. Table of Contents
1. Installation
1. Run in Docker
1. Install with cargo
1. Build yourself
1. Usage
1. Generating basic ToC
1. Customizing bullets
1. Limiting the depth of headers
1. Excluding links
1. Customizing header of ToC
1. Excluding header
md-toc README.md --header "# ToC"
Output:
# ToC
1. [markdown-toc](#markdown-toc)
1. [Table of Contents](#table-of-contents)
1. [Installation](#installation)
1. [Run in Docker](#run-in-docker)
1. [Install with cargo](#install-with-cargo)
1. [Build yourself](#build-yourself)
1. [Usage](#usage)
1. [Generating basic ToC](#generating-basic-toc)
1. [Customizing bullets](#customizing-bullets)
1. [Limiting the depth of headers](#limiting-the-depth-of-headers)
1. [Excluding links](#excluding-links)
1. [Customizing header of ToC](#customizing-header-of-toc)
1. [Excluding header](#excluding-header)
md-toc README.md --no-header
Output:
1. [markdown-toc](#markdown-toc)
1. [Table of Contents](#table-of-contents)
1. [Installation](#installation)
1. [Run in Docker](#run-in-docker)
1. [Install with cargo](#install-with-cargo)
1. [Build yourself](#build-yourself)
1. [Usage](#usage)
1. [Generating basic ToC](#generating-basic-toc)
1. [Customizing bullets](#customizing-bullets)
1. [Limiting the depth of headers](#limiting-the-depth-of-headers)
1. [Excluding links](#excluding-links)
1. [Customizing header of ToC](#customizing-header-of-toc)
1. [Excluding header](#excluding-header)