gen-toc
v1.0.7
Published
[![CircleCI](https://circleci.com/gh/sosukesuzuki/gen-toc.svg?style=svg)](https://circleci.com/gh/sosukesuzuki/gen-toc) [![npm version](https://badge.fury.io/js/gen-toc.svg)](https://badge.fury.io/js/gen-toc) [![code style: prettier](https://img.shields
Downloads
16
Readme
gen-toc
A Markdown "Table of Contents" generator on CLI.
Installation
$ npm install gen-toc
Usage
Prepare a markdown file named test.md
like below:
$ cat test.md
# Heading1
## Table of Contents
## Heading2-1
## Heading2-2
You can use gen-toc
to generate "Table of Contents" into test.md
.
$ gen-toc ./test.md
# Heading1
## Table of Contents
- [Heading2-1](#Heading2-1)
- [Heading2-2](#Heading2-2)
## Heading2-1
## Heading2-2
If you use gen-toc
with --write
option, gen-toc
writes to a file.
$ gen-toc --write ./test.md
test.md
Done
gen-toc
format a markdown with Prettier on default. If you don't want gen-toc
to format, you can add --noformat
option.
If you don't want to use a heading of ## Table of Contents
, you can use a comment of <-- Table of Contents -->
instead of a heading.
$ cat test.md
# Heading1
<!-- Table of Contents -->
## Heading2-1
## Heading2-2
$ gen-toc test.md
# Heading1
<!-- Table of Contents -->
- [Heading2-1](#Heading2-1)
- [Heading2-2](#Heading2-2)
## Heading2-1
## Heading2-2
LICENSE
MIT