ChuufMaster / markdown-toc

Generate inteligent customisable markdown TOC with affordances for emojis and relative file paths.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🧐 What is markdown-toc?

A Neovim plugin to generate, update and delete TOCs (Table of Contents) in a markdown file from another markdown files headings

markdown-toc

πŸ—‚οΈ Markdown-TOC TOC

✨ Features

  • Telescope picker to select the file to generate the TOC from
  • Customisable level of headings to generate
  • Customisable format string
  • Update a table if you are inside of TOC it when calling GenerateTOC
  • Markdown-TOC uses relative file paths so you won't have to worry about where the file you are using to generate the TOC is
  • Markdown-TOC properly encodes headings with emojis handling emojis that need special delimiters and others that don't

⚑️ Requirements

πŸ“¦ Installation

Install the plugin with your preferred package manager:

πŸ’€ Lazy.nvim

return {
  {
    'ChuufMaster/markdown-toc',
    opts = {

      -- The heading level to match (i.e the number of "#"s to match to) max 6
      heading_level_to_match = -1,

      -- Set to True display a dropdown to allow you to select the heading level
      ask_for_heading_level = false,

      -- TOC default string
      -- WARN
      toc_format = '%s- [%s](<%s#%s>)',
    }
  },
}

πŸš€ Usage

Markdown TOC exposes 2 commands to the user:

  • GenerateTOC: this opens up a telescope prompt for your cwd to select an markdown file to generate the TOC from

  • GenerateTOC: can also take in 1 argument as a number which will set the heading level to that argument overriding the default heading level set in your config and will also ignore if you set to ask for heading level

  • DeleteTOC: If your cursor is inside of a TOC matching when calling this command the default TOC format it will delete the table

βš™οΈ Configuration

markdown-toc comes with the following defaults:

{
  -- The heading level to match (i.e the number of "#"s to match to)
  heading_level_to_match = -1,

  -- Set to display a dropdown to allow you to select the heading level
  ask_for_heading_level = true,

  -- TOC default string
  -- The first %s is for indenting/tabs
  -- The sencond %s is for the original headings text
  -- The third %s is for the markdown files path that the TOC is being generated
  -- from
  -- The forth %s is for the target heading using the markdown rules
  toc_format = '%s- [%s](<%s#%s>)',
}

About

Generate inteligent customisable markdown TOC with affordances for emojis and relative file paths.

License:MIT License


Languages

Language:Lua 100.0%