Automatic TOC in github-flavoured-markdown

GithubMarkdownTableofcontents

Github Problem Overview


Is it possible to generate an automatic Table of Contents using Github Flavoured Markdown?

Github Solutions


Solution 1 - Github

I created two options to generate a toc for github-flavored-markdown:

DocToc Command Line Tool (source) requires node.js
Installation:

npm install -g doctoc

Usage:

doctoc . to add table of contents to all markdown files in the current and all sub directories.

DocToc WebApp

If you want to try it online first, go to the doctoc site, paste the link of the markdown page and it will generate a table of content that you can insert at the top of your markdown file.

Github Wikis and Anchors

As Matthew Flaschen pointed out in the comments below, for its wiki pages GitHub previously didn't generate the anchors that doctoc depends on.

UPDATE: However, they fixed this issue.

Solution 2 - Github

GitHub Pages (which is basically a wrapper for Jekyll) appears to use kramdown, which implements all of Maruku, and therefore has support for an automatically generated table of contents via atoc attribute:

* auto-gen TOC:
{:toc}

The first line just starts an unordered list and is actually thrown away.

This results in a nested set of unordered lists, using the headers in the document.

Note: this should work for GitHub Pages, not GitHub Flavored Markdown (GFM) as used in comments or wiki pages. AFAIK a solution doesn't exist for that.

Solution 3 - Github

If you edit Markdown files with Vim, you can try this plugin vim-markdown-toc.

The usage is simple, just move your cursor to the place you want to append Table of Contents and run :GenTocGFM, done!

Screenshots:

vim-markdown-toc

Features:

  1. Generate toc for Markdown files. (Support GitHub Flavored Markdown and Redcarpet)

  2. Update existing toc.

  3. Auto update toc on save.

Solution 4 - Github

Update March 2021: GitHub added an official workaround

READMEs now show a ToC like this as you scroll down into them:

enter image description here

demo: https://github.com/cirosantilli/test-git-web-interface/tree/master/d

It does not render inside the document as I wanted for better Ctrl + F, but it is better than nothing.

Also also works for non-README as well now, e.g.: https://github.com/cirosantilli/test-git-web-interface/blob/master/md.md

They also added a repository setting to enable disable that. It's so weird, who would ever want to disable it? Under https://github.com/cirosantilli/test-git-web-interface/settings Features:

> Table of contents > > Autogenerate table of contents for Markdown files in this repository. The table of contents will be displayed near the top of the file.

Original answer

It's not possible, except for the workarounds proposed.

I proposed Kramdown TOC extension and other possibilities to [email protected] and Steven! Ragnarök replied with the usual:

> Thanks for the suggestion and links. I'll add it to our internal feature request list for the team to see.

Let's upvote this question until it happens.

Another workaround is to use Asciidoc instead of Markdown, which does render TOCs. I've moved to this approach for my content nowadays.

Solution 5 - Github

It's not automatic, but it uses Notepad++ regular expressions:

Replace all first by the second (removes all lines not having headers)

^##(#?)(#?)(.*?)$(.|\r|\n)*?(?=^##|\z)
-\1\2 [\3](#\3)\n

Then (converts headers III to spaces)

-##
        -

Then (converts headers II to spaces)

-#
    -

Then (remove unused chars at the beginning and at the end of link title)

\[ *((?:(?![ .:#!\?;]*\])[^#])*)[ #:!\?;]*\]
[\1]

Then (convert last tokens lowercase and dash instead of spaces)

\]([^ \r\n]*) ([^\r\n ]*)
]\L\1-\2

Remove unused final pounds and initial dashes:

(?:()[-:;!\?#]+$|(\]#)-)
\1\2

Remove useless chars in links:

(\].*?)(?:\(|\))
\1

And finally add parenthesis around final links:

\](?!\()(.*?)$
\]\(\1\)

And voilà! You can even put this in a global macro if you repeat it enough time.

Solution 6 - Github

Github Flavored Markdown uses RedCarpet as their Markdown engine. From the RedCarpet repo:

> :with_toc_data - add HTML anchors to each header in the output HTML, to allow linking to each section.

It seems in that you'd need to get at the renderer level to set this flag, which isn't possible on Github obviously. However, the latest update to Github Pages, it seems that automatic anchoring is turned on for headers, creating linkable headings. Not exactly what you want, but it might help you create a TOC for your doc a bit easier (albeit manually).

Solution 7 - Github

A very convenient way to achieve a table of contents for a mardown file when working with Visual Studio Code is the extension Markdown-TOC.

It can add a toc to existing markdown files and even keep the toc up-to-date on saving.

enter image description here

Solution 8 - Github

It is possible to generate a webpage automatically with http://documentup.com/ from the README.md file. It's not creating a TOC, but for many it might solve the reason for wanting to create a TOC.

Another alternative to Documentup is Flatdoc: http://ricostacruz.com/flatdoc/

Solution 9 - Github

Gitdown is a markdown preprocessor for Github.

Using Gitdown you can:

  • Generate Table of Contents
  • Find dead URLs and Fragment Identifiers
  • Include variables
  • Include files
  • Get file size
  • Generate Badges
  • Print Date
  • Print information about the repository itself

Gitdown streamlines common tasks associated with maintaining a documentation page for a GitHub repository.

Using it is straightforward:

var Gitdown = require('gitdown');

Gitdown
    // Gitdown flavored markdown.
    .read('.gitdown/README.md')
    // GitHub compatible markdown.
    .write('README.md');

You can either have it as a separate script or have it as part of the build script routine (such as Gulp).

Solution 10 - Github

Use coryfklein/doctoc, a fork of thlorenz/doctoc that does not add "generated with DocToc" to every table of contents.

npm install -g coryfklein/doctoc

Solution 11 - Github

Majority of other answers require to install some tool. I found a quick and easy online solution https://imthenachoman.github.io/nGitHubTOC.

For any markdown input it generates table of content output. You can specify minimum and maximum heading level.

The source code is located at https://github.com/imthenachoman/nGitHubTOC

Solution 12 - Github

My colleague @schmiedc and I have created a GreaseMonkey script that installs a new TOC button left of the h1 button which uses the excellent markdown-js library to add/refresh a table of contents.

The advantage over solutions like doctoc is that it integrates into GitHub's wiki editor and does not need users to work on their command-line (and require users to install tools like node.js). In Chrome, it works by drag 'n dropping into the Extensions page, in Firefox you will need to install the GreaseMonkey extension.

It will work with plain markdown (i.e. it does not handle code blocks correctly, as that is a GitHub extension to markdown). Contributions welcome.

Solution 13 - Github

This is a not a direct answer to this question as so many people have provided workarounds. I don't think generating a TOC has been officially supported by Github yet to-date. If you want GitHub to render a Table of Contents on their GFM preview pages automatically, please participate the discussion on the official feature request issue.

Solution 14 - Github

Currently it's not possible using markdown syntax (see the ongoing discussion at GitHub), however you can use some external tools such as:


Alternatively use AsciiDoc instead (e.g. README.adoc), e.g.

:toc: macro
:toc-title:
:toclevels: 99
# Title

## A

### A2

## B

### B2

as suggested in this comment. Check the demo here.

Solution 15 - Github

For Github's Texteditor Atom check out this awesome plugin (or "package" in Atom-lingo), which generates "TOC (table of contents) of headlines from parsed markdown" files:

markdown-toc

Once installed as Atom-package you can use the shortcut ctrl-alt-c to insert a TOC based on your markdown-doc-structure at the current cursor position...

Screenshots:

enter image description here

Atom Keybindings

markdown-toc gives you the following default key-bindings to control the plugin in Atom:

  • ctrl-alt-c => create TOC at cursor position
  • ctrl-alt-u => update TOC
  • ctrl-alt-r => delete TOC

Plugin Features (from the project's README)

  • Auto linking via anchor tags, e.g. # A 1#a-1

  • Depth control [1-6] with depthFrom:1 and depthTo:6

  • Enable or disable links with withLinks:1

  • Refresh list on save with updateOnSave:1

  • Use ordered list (1. ..., 2. ...) with orderedList:0

Solution 16 - Github

Here's a shell script I threw together today for this. Might need to tweak it for your needs, but it should be a good starting point.

cat README.md \
    | sed -e '/```/ r pf' -e '/```/,/```/d' \
    | grep "^#" \
    | tail -n +2 \
    | tr -d '`' \
    | sed 's/# \([a-zA-Z0-9`. -]\+\)/- [\1](#\L\1)/' \
    | awk -F'(' '{for(i=2;i<=NF;i++)if(i==2)gsub(" ","-",$i);}1' OFS='(' \
    | sed 's/^####/      /' \
    | sed 's/^###/    /' \
    | sed 's/^##/  /' \
    | sed 's/^#//'

If anyone knows a better way to do those final # replacements, please add a comment. I tried various things and wasn't happy with any, so I just brute forced it.

Solution 17 - Github

There's now a GitHub Action accomplishing this:

https://github.com/marketplace/actions/toc-generator

  1. Specify location of TOC (option) e.g. README.md
<!-- START doctoc -->
<!-- END doctoc -->
  1. Setup workflow e.g. .github/workflows/toc.yml
on: push
name: TOC Generator
jobs:
  generateTOC:
    name: TOC Generator
    runs-on: ubuntu-latest
    steps:
      - uses: technote-space/toc-generator@v2

Solution 18 - Github

Update 2022-02

In VSCode, check out extension "Markdown All in One". It will generate and update the TOC of markdown automatically.

  1. Install Extension.
  2. Place cursor at where you want to insert TOC.
  3. Run command "Markdown All in One: Create Table of Contents"
  4. Enjoy!

Solution 19 - Github

> Shameless "borrow" of this SO answer.

You can do this with Pandoc.

pandoc -s --toc input.md -o input_toc.md 

Note: the order of the input and output files is important here.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRoberto AloiView Question on Stackoverflow
Solution 1 - GithubThorsten LorenzView Answer on Stackoverflow
Solution 2 - GithubRebecca ScottView Answer on Stackoverflow
Solution 3 - GithubZhuang MaView Answer on Stackoverflow
Solution 4 - GithubCiro Santilli Путлер Капут 六四事View Answer on Stackoverflow
Solution 5 - GithubMikaël MayerView Answer on Stackoverflow
Solution 6 - GithubKevin SuttleView Answer on Stackoverflow
Solution 7 - GithubMathias DpunktView Answer on Stackoverflow
Solution 8 - GithubNilsView Answer on Stackoverflow
Solution 9 - GithubGajusView Answer on Stackoverflow
Solution 10 - GithubCory KleinView Answer on Stackoverflow
Solution 11 - GithubMichael FreidgeimView Answer on Stackoverflow
Solution 12 - GithubJohannes SchindelinView Answer on Stackoverflow
Solution 13 - GithubXiaodong QiView Answer on Stackoverflow
Solution 14 - GithubkenorbView Answer on Stackoverflow
Solution 15 - GithubMayinxView Answer on Stackoverflow
Solution 16 - GithubJohn EikenberryView Answer on Stackoverflow
Solution 17 - GithubemazzottaView Answer on Stackoverflow
Solution 18 - GithubNguyenView Answer on Stackoverflow
Solution 19 - GithubMichael HallView Answer on Stackoverflow