Giter Site home page Giter Site logo

md-rec-toc's Introduction

md-rec-toc

Recusersively make a markdown table of content of a folder.

Example :

From this folder :

.
├── coucou.md
├── folder_1
│   ├── monday.md
│   ├── sub_folder_1
│   │   └── july.md
│   ├── sub folder 2
│   │   └── be happy.md
│   └── tuesday.md
├── hello.md
└── life is good.md

We get this :

- [coucou](coucou.md)
- folder_1
    - [monday](folder_1/monday.md)
    - sub folder 2
        - [be happy](folder_1/sub folder 2/be happy.md)
    - sub_folder_1
        - [july](folder_1/sub_folder_1/july.md)
    - [tuesday](folder_1/tuesday.md)
- [hello](hello.md)
- [life is good](life is good.md)

This was the normal mode.

Modes

There are two other modes :

  • one without file extension (nice for gitlab wiki)
- [coucou](coucou)
- folder_1
    - [monday](folder_1/monday)
    - sub folder 2
        - [be happy](folder_1/sub folder 2/be happy)
    - sub_folder_1
        - [july](folder_1/sub_folder_1/july)
    - [tuesday](folder_1/tuesday)
- [hello](hello)
- [life is good](life is good)
  • one with "%20" instead of spaces in file path (nice for Obsidian)
    - sub folder 2
        - [be happy](folder_1/sub%20folder%202/be%20happy.md)
- [life is good](life%20is%20good.md)

Both modes can be combined.

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.