md-toc-filter

v0.9.0
This is a small node script to preprocess and create table of contents for markdown documents. It examines the document you pass to it, creates a table of contents based on your titles, and inserts it instead of every line that contains '@@TOC@@'
table of contents toc contents

Table of Contents Generator

About

Small and simple README.md preprocessor for creating table of contents.

Say you've got a README.md file with lots of information, and you want to create a table of contents with reference links

This script will help you to do so. It extracts information of titles in a given file, and inserts a formatted table of contents in the position, specified by "@@TOC@@" line.

Usage

node toc.js README.md > NEW_README.md

Example

# Foo Great Project

Hey, this is my project

## Contents
@@TOC@@

## About

Some info about it

## Authors

My picture here

Will be transformed to

# Foo Great Project

Hey, this is my project

## Contents
- [Foo Great Project](#foo-great-project)
    - [Contents](#contents)
    - [About](#about)
    - [Authors](#authors)

## About

Some info about it

## Authors

My picture here

After the preprocessing you're free to modify the result as you wish. For example, it makes sense to remove reference to table of contents from table of contents

Limitations

The script doesn't support underlined titles like this ``` My Title


Use sharps instead

My Title


npm i md-toc-filter

Metadata

  • Unknown
  • >=0.6.14
  • Andrey Lushnikov
  • released 5/12/2012

Downloads

Maintainers