Directory tree plugin
July 5, 2026 ยท View on GitHub
๐ฆ This package has moved. It now lives in the markdown-magic-plugins monorepo at
packages/directory-tree. This repository is archived; issues and contributions go to the monorepo.
Directory tree plugin
Add directory tree to markdown files via markdown-magic
Install
npm i markdown-magic markdown-magic-directory-tree --save-dev
Adding the plugin
See example.js for usage.
import path from 'path';
import { markdownMagic } from 'markdown-magic';
import DIRTREE from './index.js';
const config = {
matchWord: 'AUTO-GENERATED-CONTENT',
transforms: {
DIRTREE,
},
};
const markdownPath = path.join(import.meta.dirname, 'README.md');
await markdownMagic(markdownPath, config);
Usage in markdown
markdown-magic-directory-tree/
โโโ __fixtures__/
โโโ __snapshots__/
โโโ .github/
โโโ example.js
โโโ index.js
โโโ index.spec.js
โโโ package-lock.json
โโโ package.json
โโโ README.md
Options
- dir -
process.cwd()by default - ignore -
['.git', '.gitkeep', '.gitignore', 'node_modules']by default - depth -
Infinityby default (how deep in the tree to traverse) - onlyDirs -
falseby default (how mnuch t)