Giter Club home page Giter Club logo

tocer's Introduction

Tocer

Tocer (a.k.a. Table of Contenter) is a command line interface for generating table of contents for Markdown files. Use this tool to automatically manage and update your documentation with minimal effort. Works on single files or multiple files within nested directory structures.

Features

  • Supports Markdown ATX-style headers. Example: # Header.

    • Does not support header suffixes. Example: # Header #.

    • Does not support header prefixes without spaces. Example: #Header.

  • Supports table of contents generation for single or multiple files.

  • Supports custom label. Default: ## Table of Contents.

  • Supports file list filtering. Default: "README.md".

  • Prepends table of contents to Markdown documents that don’t have table of contents.

  • Rebuilds Markdown documents that have existing table of contents.

Requirements

  1. A UNIX-based system.

  2. Ruby.

Setup

To install with security, run:

# πŸ’‘ Skip this line if you already have the public certificate installed.
gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
gem install tocer --trust-policy HighSecurity

To install without security, run:

gem install tocer

You can also add the gem directly to your project:

bundle add tocer

Usage

Command Line Interface (CLI)

From the command line, run: tocer --help

Usage

To generate the table of contents at a specific position within your Markdown files, add the following lines to your file(s) prior to generation:

<!-- Tocer[start] -->
<!-- Tocer[finish] -->

In the case that Tocer has auto-generated a table of contents for a Markdown file; the existing table of contents has become stale; or placement of the table of contents has changed, you can re-run Tocer on that file to auto-update it with new table of contents.

Customization

This gem can be configured via a global configuration: ~/.config/tocer/configuration.yml.

It can also be configured via XDG environment variables.

The default configuration is as follows:

label: "## Table of Contents"
patterns:
  - "README.md"
root_dir: "."

Feel free to take this default configuration, modify, and save as your own custom configuration.yml.

The configuration.yml file can be configured as follows:

  • label: The header label for the table of contents.

  • patterns: The list of included files.

  • root_dir: The root path to use for processing files.

There are multiple ways the include list can be defined. Here are some examples:

# Use an empty array to ignore all files:
:patterns: []

# Use an array of wildcards for groups of files with similar extensions:
:patterns:
  - "*.md"
  - "*.mkd"
  - "*.markdown"

# Use a mix of wild cards and relative names/paths to customized as necessary:
:patterns:
  - "README.md"
  - "docs/*.md"
  - "*.markdown"

# Use a recursive glob to traverse and update all sub-directories:
:patterns:
  - "**/*.md"

Rake

You can add Rake support by adding the following to your Rakefile:

begin
  require "tocer/rake/register"
rescue LoadError => error
  puts error.message
end

Tocer::Rake::Register.call

Once required and registered, the following tasks will be available (i.e. bundle exec rake -T):

rake toc[label,includes]   # Insert/Update Table of Contents

You can invoke the task as follows (quotes are only necessary if spaces are used):

rake toc["## Example, *.md"]

Development

To contribute, run:

git clone https://github.com/bkuhlmann/tocer
cd tocer
bin/setup

You can also use the IRB console for direct access to all objects:

bin/console

Tests

To test, run:

bin/rake

Credits

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.