Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

markdown-notes-tree

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-notes-tree

Generate Markdown trees that act as a table of contents for a folder structure with Markdown notes

  • 1.3.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

markdown-notes-tree

If you have a folder structure with Markdown notes, you can use this tool to generate Markdown trees that act as a table of contents for the folder structure.

By default, the tool does the following:

  • Append a complete tree to the README.md file at the top level (the directory where the tool is executed)
  • Overwrite any README.md files in subdirectories with a file containing the subdirectory's name as title and a tree of the subdirectory's contents (can be disabled through command line arguments)

You can run the tool again and again without changing the result. Of course, it is recommended to run the tool again every time you make changes to the Markdown notes in your folder structure. It can be useful to include the tool in build scripts or pre-commit hooks.

Example input and result

Install

npm install -D markdown-notes-tree

Use

You can run the tool by running npx markdown-notes-tree from the command line or invoking markdown-notes-tree from an npm script.

Make sure to run the tool in the top-level directory of your Markdown notes folder structure.

Ignored files and folders

The tool ignores:

  • Folders starting with . or _
  • node_modules folders
  • Files that are not Markdown files

You can specify additional files to ignore using the --ignore command line argument (see below).

Options

There are a limited number of command line arguments available:

  • --ignore: Specify glob pattern for additional files to ignore. You can use this argument multiple times in order to specify multiple glob patterns.
    • Example: markdown-notes-tree --ignore **/CONTRIBUTING.md
    • Example: markdown-notes-tree --ignore CONTRIBUTING.md --ignore sub1/CONTRIBUTING.md
    • Example: markdown-notes-tree --ignore exclude-this-folder/**
  • --linkToSubdirectoryReadme: When linking to a subdirectory, link directly to its README.md file. Note that this assumes that each subdirectory will actually have a README.md file. By default, the tool generates these automatically.
    • Example: markdown-notes-tree --linkToSubdirectoryReadme
  • --noSubdirectoryTrees: Don't write README.md files to subdirectories. Any existing README.md files in subdirectories will be ignored.
    • Example: markdown-notes-tree --noSubdirectoryTrees
  • --orderNotesByTitle: Order notes in the same (sub)directory by title instead of by filename.
    • Example: markdown-notes-tree --orderNotesByTitle
  • --useTabs: Use tabs (instead of the standard four spaces) for indentation.
    • Example: markdown-notes-tree --useTabs

Keywords

FAQs

Package last updated on 01 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc