An open API service indexing awesome lists of open source software.

https://github.com/camacho/markdown-magic-directory-tree

Print directory tree in Markdown
https://github.com/camacho/markdown-magic-directory-tree

Last synced: 3 months ago
JSON representation

Print directory tree in Markdown

Awesome Lists containing this project

README

        

# Directory tree plugin

Add directory tree to markdown files via [markdown-magic](https://github.com/DavidWells/markdown-magic)

## Install

```
npm i markdown-magic markdown-magic-directory-tree --save-dev
```

## Adding the plugin

See `example.js` for usage.

```js
const fs = require('fs');
const path = require('path');
const markdownMagic = require('markdown-magic');

const config = {
transforms: {
DIRTREE: require('./index.js'),
},
};

const markdownPath = path.join(__dirname, 'README.md');
markdownMagic(markdownPath, config);
```

## Usage in markdown

```
markdown-magic-directory-tree/
├── .npmrc
├── example.js
├── index.js
├── package-lock.json
├── package.json
└── README.md
```

## Options

* **dir** - `process.cwd()` by default
* **ignore** - `['.git', '.gitkeep', '.gitignore', 'node_modules']` by default
* **depth** - `Infinity` by default (how deep in the tree to traverse)
* **onlyDirs** - `false` by default (how mnuch t)